What is output of the following program ?
main()
{
i = 1;
printf("%d %d %d\n",i,i++,i++);
}
Answer Posted / siva
1 1 2
| Is This Answer Correct ? | 1 Yes | 5 No |
Post New Answer View All Answers
Why is void main used?
What is wrong with this statement? Myname = 'robin';
Write the control statements in C language
How can you find the exact size of a data type in c?
What are the types of type specifiers?
What are reserved words with a programming language?
What are the advantages of external class?
why do some people write if(0 == x) instead of if(x == 0)?
Explain what does the format %10.2 mean when included in a printf statement?
Do variables need to be initialized?
What is the size of a union variable?
How can I get random integers in a certain range?
Array is an lvalue or not?
What does char * * argv mean in c?
What is volatile variable how do you declare it?