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
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
Why #include is used in c language?
what is the difference b/w NULL and null?
Explain what standard functions are available to manipulate strings?
What is difference between structure and union in c programming?
Program to write some contents into a file using file operations with proper error messages.
Simplify the program segment if X = B then C ← true else C ← false
What is break statement?
which will be first in c compiling ,linking or compiling ,debugging.
Explain union.
Why does not use getgh(); and <conio.h> in c language.
main() { int a; a=++100; printf("%d",a); getch(); }