What is output of the following program ?
main()
{
i = 1;
printf("%d %d %d\n",i,i++,i++);
}
Answer Posted / hariram
3 2 1
| Is This Answer Correct ? | 18 Yes | 6 No |
Post New Answer View All Answers
Is register a keyword in c?
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
What's the right way to use errno?
What should malloc(0) do?
difference between native and cross compilers
What is use of #include in c?
What does do in c?
What are c preprocessors?
What are the general description for loop statement and available loop types in c?
What is meant by realloc()?
Is there a way to switch on strings?
What is scope and lifetime of a variable in c?
What is fflush() function?
What is volatile variable in c?
Multiply an Integer Number by 2 Without Using Multiplication Operator