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
Answer Posted / guest
A)It returns the value rounded down to the next lower
integer
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
What is New modifiers?
What is substring in c?
what is bit rate & baud rate? plz give wave forms
Where is c used?
Write a program that accept anumber in words
State two uses of pointers in C?
Explain pointers in c programming?
How many main () function we can have in a project?
What is the difference between mpi and openmp?
What is 'bus error'?
How can I remove the trailing spaces from a string?
What do mean by network ?
Is it acceptable to declare/define a variable in a c header?
What are the types of variables in c?