Is there anything like an ifdef for typedefs?
No Answer is Posted For this Question
Be the First to Post Answer
What would the following code segment printint k = 8;docout << "k = " << k << " ";while k++ < 5; a) 13 b) 5 c) 8 d) pointers
IS Doon college of Engn.. has good faculty
How can I split up a string into whitespace-separated fields?
Three major criteria of scheduling.
Write a simple code fragment that will check if a number is positive or negative.
What is a node in c?
main() { int i = -3,j=2,k=0,m; m= ++i || ++j && ++k; printf("%d%d%d",i,j,k,m); }
What is the use of bitwise operator?
What is difference between union and structure in c?
main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....
what will be the output of" printf("%d%d",scanf("%d% d",&a&b));"
What is operator promotion?