What is output of the following program ?
main()
{
i = 1;
printf("%d %d %d\n",i,i++,i++);
}
Answer Posted / navya
1,1,2
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
Is c procedural or functional?
Explain is it valid to address one element beyond the end of an array?
Can we replace the struct function in tree syntax with a union?
What is difference between union All statement and Union?
Why is event driven programming or procedural programming, better within specific scenario?
What is the scope of local variable in c?
What is variable declaration and definition in c?
What are local static variables? How can you use them?
What happens if a header file is included twice?
What are the 5 data types?
What does the message "automatic aggregate intialization is an ansi feature" mean?
Write a program to check armstrong number in c?
What is malloc calloc and realloc in c?
what type of questions arrive in interview over c programming?
Why isn't it being handled properly?