int i=0,j;
j=++i + ++i ++i;
printf("
%d",j);
Answers were Sorted based on User's Feedback
What are identifiers and keywords in c?
i want to know aptitude questions,technical questions
int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
what is diff b/w huge & far & near pointer??
What is the advantage of a random access file?
How many bytes is a struct in c?
What is array of structure in c programming?
What is the scope of local variable in c?
What is the use of the function in c?
What are the differences between new and malloc in C?
Hi, main() { } Is a user defined function or Built in Functionn
How can I split up a string into whitespace-separated fields?