Explain what math functions are available for integers? For floating point?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

How can I do peek and poke in c?

0 Answers  


What is sizeof array?

0 Answers  


Can i use Two or More Main Funtion in any C program.?

4 Answers  


Explain what is the difference between functions abs() and fabs()?

0 Answers  


what is structuer?

4 Answers   LG Soft, Wipro,






What is break in c?

0 Answers  


Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)

0 Answers  


Difference between for loop and while loop?

1 Answers  


#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300

4 Answers   Tieto,


How is a structure member accessed?

0 Answers  


There are 8 billiard balls, and one of them is slightly heavier, but the only way to tell was by putting it on a weighing scale against another. What's the fewest number of times you'd have to use the scale to find the heavier ball?

5 Answers   Microsoft, TCS,


What should not contain a header file?

2 Answers  


Categories