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



2. What is the function of ceil(X) defined in math.h do? A)It returns the value rounded down to the..

Answer / guest is wrong

B)it returns the value rounded up to the next higher integer

Is This Answer Correct ?    13 Yes 0 No

2. What is the function of ceil(X) defined in math.h do? A)It returns the value rounded down to the..

Answer / ramya

b) it returns the value rounded up to the next hiher integer

Is This Answer Correct ?    2 Yes 0 No

2. What is the function of ceil(X) defined in math.h do? A)It returns the value rounded down to the..

Answer / guest

A)It returns the value rounded down to the next lower
integer

Is This Answer Correct ?    1 Yes 3 No

Post New Answer

More C Interview Questions

Explain what is a static function?

0 Answers  


How can I implement opaque (abstract) data types in C? What's the difference between these two declarations? struct x1 { ... }; typedef struct { ... } x2;

2 Answers  


When you call malloc() to allocate memory for a local pointer, do you have to explicitly free() it?

2 Answers   Aloha Technology,


What are the various topologies? Which one is the most secure?

2 Answers  


What is pointer to pointer in c?

0 Answers  


Why is void main used?

0 Answers  


hi, which software companys will take,if d candidate's % is jst 55%?

0 Answers  


void main() { int a[]={1,2,3,4,5},i; for(i=0;i<5;i++) printf("%d",a++); getch(); }

3 Answers  


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????

1 Answers  


What are the application of c?

0 Answers  


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).

1 Answers  


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

2 Answers   Accenture,


Categories