What is the difference between functions abs() and fabs()?


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

Post New Answer

More C Interview Questions

Write the following function in C. stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.

4 Answers   OpenFeel,


i want explaination about the program and its stack reprasetaion fibbo(int n) { if(n==1 or n==0) return n; else return fibbo(n-1)+fibbo(n-2); } main() { fibbo(6); }

2 Answers  


what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;

0 Answers   L&T,


Hi Every one...........I have been selected for the SBI Clerk. But i m one month Pregnanat. So anyone please suggest me, is they take any objection on my joining .

4 Answers   State Bank Of India SBI,


how can f be used for both float and double arguments in printf? Are not they different types?

0 Answers  






Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)

0 Answers   InterGraph,


what is the use of call back function in c?tell me with example

2 Answers   Bosch,


What is the use of getchar functions?

0 Answers  


What are the __date__ and __time__ preprocessor commands?

0 Answers  


What is the proper way of these job Tell me about there full work

0 Answers   EDS,


Can we add pointers together?

0 Answers  


how to get starting address of a running C program

3 Answers  


Categories