Differentiate abs() function from fabs() function.
No Answer is Posted For this Question
Be the First to Post Answer
main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }
what will be the output for the following main() { printf("hi" "hello"); }
proc() { static i=10; printf("%d",i); } If this proc() is called second time, what is the output?
What does *p++ do?
what is the advantage of using SEMAPHORES to ORDINARY VARIABLES???
difference between c and c++?
What is data types?
IS it possible to define a zero sized array in c.if it is possible how can the elements of that array can be accessed.array index starts from zero,if it is possible to define zero sized array how can be its first element can be accesseed.
Explain the array representation of a binary tree in C.
how many error occurs in C language ?
Go through the following code sinippet char a[20]; a="Hello Orcale Test"; will this compile?
define switch statement?