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 |
Explain what is a static function?
How can I implement opaque (abstract) data types in C? What's the difference between these two declarations? struct x1 { ... }; typedef struct { ... } x2;
When you call malloc() to allocate memory for a local pointer, do you have to explicitly free() it?
What are the various topologies? Which one is the most secure?
What is pointer to pointer in c?
Why is void main used?
hi, which software companys will take,if d candidate's % is jst 55%?
void main() { int a[]={1,2,3,4,5},i; for(i=0;i<5;i++) printf("%d",a++); getch(); }
int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain me output????
What are the application of c?
can u suggest me am in a confusion to choose whether to go to c programming or a software testing . am a graduate in B.sc(electronics).
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