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
Hi, main() { } Is a user defined function or Built in Functionn
Where are local variables stored in c?
main() { int arr[5]={23,67}; printf("%d%d%d",arr[2],arr[3],arr[4]); }
Explain how does free() know explain how much memory to release?
what is the defrenece between structure and union
Why is c so popular?
Is c easy to learn?
What is data structure in c language?
what is an inline fuction??
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
A stack can be implemented only using array?if not what is used?
write a program to check whether a number is Peterson or not.