In which header file is the null macro defined?
No Answer is Posted For this Question
Be the First to Post Answer
What is pragma in c?
Write a program for Overriding.
Explain #pragma statements.
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); }
cavium networks written test pattern ..
main() { int i = -3,j=2,k=0,m; m= ++i || ++j && ++k; printf("%d%d%d",i,j,k,m); }
Are the variables argc and argv are always local to main?
In a switch statement, explain what will happen if a break statement is omitted?
What is the purpose of ftell?
which of 'arrays' or 'pointers' are faster?
wat are the two methods for swapping two numbers without using temp variable??
What is indirection?