Differentiate abs() function from fabs() function.


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

Post New Answer

More C Interview Questions

what are bit fields in c?

2 Answers  


Write a programme to find even numbers without using any conditional statement?

3 Answers   ADD Software, Infosys,


Write a program to write a given string in maximum possibilities? i.e str[5]="reddy"; i.e we can write this string in 120 ways for that write a program

3 Answers   Subex,


Program to find the sum of digits of a given number until the sum becomes a single digit

8 Answers   InterGraph,


void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply

0 Answers  






What is the difference between array and pointer?

0 Answers  


to convert a string without using decrement operater and string functions

1 Answers  


1.write a program to merge the arrays 2.write efficient code for extracting unique elements from a sorted list of array?

3 Answers   Qualcomm,


24.what is a void pointer? 25.why arithmetic operation can’t be performed on a void pointer? 26.differentiate between const char *a; char *const a; and char const *a; 27.compare array with pointer? 28.what is a NULL pointer? 29.what does ‘segmentation violation’ mean? 30.what does ‘Bus Error’ mean? 31.Define function pointers? 32.How do you initialize function pointers? Give an example? 33.where can function pointers be used?

2 Answers  


How does sizeof know array size?

0 Answers  


How the processor registers can be used in C ?

7 Answers   HP,


Write a program to print prime nums from 1-20 using c programing?

13 Answers   IBM,


Categories