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
Tell me what are bitwise shift operators?
What is huge pointer in c?
how can use subset in c program and give more example
When would you use a pointer to a function?
WRITE A PROGRAM IN C TO MULTIPLY TWO 2-D ARRAYS
When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?
write a program for 4 4 3 3 3 3 2 2 2 2 2 2 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 2 2 2 2 2 2 3 3 3 3 4 4
how to generate the length of a string without using len funtion?
What are the benefits of c language?
what is the diff b/w static and non static variables in C. Give some examples plz.
What does the c in ctime mean?
5. What kind of sorting is this: SORT (k,n) 1.[Loop on I Index] repeat thru step2 for i=1,2,........n-1 2.[For each pass,get small value] min=i; repeat for j=i+1 to N do { if K[j]<k[min] min=j; } temp=K[i];K[i]=K[min];K[min]=temp; 3.[Sorted Values will be returned] A)Bubble Sort B)Quick Sort C)Selection Sort D)Merge Sort