2. 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
Answers were Sorted based on User's Feedback
Answer / guest is wrong
B)it returns the value rounded up to the next higher integer
| Is This Answer Correct ? | 13 Yes | 0 No |
Answer / ramya
b) it returns the value rounded up to the next hiher integer
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / guest
A)It returns the value rounded down to the next lower
integer
| Is This Answer Correct ? | 1 Yes | 3 No |
What is huge pointer in c?
Differentiate call by value and call by reference?
What is difference between main and void main?
compare array with pointer?
#include<stdio.h> #include<conio.h> struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.
What is a program?
What is graph in c?
When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?
What are the uses of null pointers?
What is union and structure?
What is dynamic dispatch in c++?
What are actual arguments?