answersLogoWhite

0


Best Answer

There is no such thing as an interger.The ceiling function is a function which maps any variable x to the next integer, or the smallest integer greater than or equal to x. Why? Because that is how the function is defined. And there are many occasions when it is applied in normal life. If you require 3.2 cans of paint to paint a wall you will need to buy 4 cans, if a school wants to take 63 children and staff no a trip and a bus has only 30 seats, you will need three buses.

User Avatar

Wiki User

6y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

6y ago

I assume you mean the GREATEST integer function. The domain is all real numbers; the range is the integers, because the function is defined to only return integers.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the Range of great integer function Why?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the difference between range and integral range?

The range, usually of a function, is the set of value that the function can take. The integral range is a subset of the range consisting of integer values that the function can take.


Given a function which produces a random integer in the range 1 to 5, write a function which produces a random integer in the range 1 to 7?

In C, one possible solution: int rnd7 () { int i, r; r = 0; for (i = 0; i < 9; i++) r += rnd5() - 1; return 1 + (r % 7); }


What does GTF mean in math?

it means something great and top fave to grades


Is the greatest integer function a continuous funcion?

No. It has a discontinuity at every integer value.


Can an integer repeat in the range?

Yes.


Can a function have an infinite number of values in its domain and only a finite number of values in its range?

Yes. A function is a rule to assign a value based on some other value; you can make the function equal to a constant for all values of a variable "x", or you can make it equal to a few values. Commonly used functions of this type include the integer function (take the integer part of a number), which, if you consider a finite domain (for example, all numbers from 0 to 10), has an infinite number of values in the domain, but only a few specific values in its range; and the sign function.


How do you print size of integer?

the size of an integer is determaind by using the function "sizeof(c)",here 'c' is any integer.


What is the greatest integer function of -50.95?

-51


How do declare function pointer having two integer parameters and returning integer pointers?

// declare a function int* function(int, int); or int* (function)(int, int); // declare a pointer to a function int* (*pointer_to_function)(int, int);


What is the signed integer range?

The signed integer range extends only from negative infinity to positive infinity. You have to make up your own names and symbols for whole numbers that are not included in that range.


What is the difference between signed integer and unsigned integer in terms of memory and range?

Signed integer is any integer that carries negative sign while unsigned integer is any integer that carries positive sign


Why you use 'integer' before function in C language?

To specify the return-type of the function.