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 can I invoke another program or command and trap its output?
Is python a c language?
What is spaghetti programming?
What is function in c with example?
how to execute a program using if else condition and the output should enter number and the number is odd only...
What does the c in ctime mean?
What are header files why are they important?
Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college. 1.write a function to print names of all students who joined in a particular year 2.write a function to print the data of a student whose roll number is given
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
A character flag or control mechanism that delineates one data item from another a) variable b) constant c) delimiter d) call by reference
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
What are the complete rules for header file searching?
What is clrscr in c?
Write the syntax and purpose of a switch statement in C.
program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)