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
Why do we need functions in c?
What are the salient features of c languages?
What are the different types of endless loops?
Differentiate between full, complete & perfect binary trees.
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
write a c program to find biggest of 3 number without relational operator?
2) Write a program that will help Air Traffic Control for an airport to view the sequence of flights ready for take-off. The airport can accommodate 10 flights waiting for take-off at any point in time. Each flight has a unique 3 digit numeric identifier.  Each time a flight takes-off, Air Traffic Control adds a flight to the waitlist. Each time a flight is added to the waitlist, the list of flights waiting to take-off must be displayed.  When a flight is cleared for take-off, Air Traffic Control removes the flight from the waitlist. Each time a flight takes-off, the list of flights waiting to take-off must be displayed.  Sequence of take-off is the sequence of addition to the waitlist
write a program to sum of its digit with using control structure or with out using loop. for ex: let the number is 25634 then answer will be=2+5+6+3+4=20
What is the difference between CV and Resume ?
What are the phases in s/w developed life cycle? wat is the diff b/w stack & queue...where do we use stack
compare array with pointer?
what is the output of the code and how? main() { int *ptr,x; x=sizeof(ptr); printf("%d",x); }