Explain what math functions are available for integers? For floating point?
No Answer is Posted For this Question
Be the First to Post Answer
How can I sort a linked list?
What is diffrance between declaration and defination of a variable or function
What are predefined functions in c?
What does char * * argv mean in c?
When do we get logical errors?
output for following code??? main() { int x=2,y,z; x*=3+2; printf("1.%d\n",x); x*=y=z=4; printf("2.%d %d %d\n",x,y,z); x=y==z; printf("3.%d\n",x); x==(y=z); printf("%d",x); }
What's the best way to declare and define global variables?
What is huge pointer in c?
What is the difference between null pointer and wild pointer?
Give the rules for variable declaration?
What is nested structure?
what is a constant pointer in C