What is the function of ceil(X) defined in math.h do?
A)It returns the value rounded down to the next lower
integer
B)it returns the value rounded up to the next higher integer
C)the Next Higher Value
D)the next lower value
Answer Posted / jj
ceil(2.3)====3
ceil(-2.3)===-2
| Is This Answer Correct ? | 6 Yes | 2 No |
Post New Answer View All Answers
How to throw some light on the b tree?
What does main () mean in c?
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
What is the sizeof () operator?
What is typedf?
What are the rules for identifiers in c?
How can I determine whether a machines byte order is big-endian or little-endian?
Can you apply link and association interchangeably?
What is mean by data types in c?
What is difference between Structure and Unions?
How can I list all of the predefined identifiers?
Can the sizeof operator be used to tell the size of an array passed to a function?
main() { printf("hello"); fork(); }
Differentiate between full, complete & perfect binary trees.
What is an array in c?