main()
{
int i = 10;
printf(" %d %d %d \n", ++i, i++, ++i);
}
Answer Posted / pooja alagarsamy
when compiled as a program, it gives this output:
13 11 13
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What is infinite loop?
Do you know the use of 'auto' keyword?
Who is the founder of c language?
What is malloc return c?
differentiate built-in functions and user – defined functions.
List some applications of c programming language?
What is c definition?
Draw a diagram showing how the operating system relates to users, application programs, and the computer hardware ?
Is calloc better than malloc?
What is a string?
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)
What does c mean?
write a c program for swapping two strings using pointer
How is a structure member accessed?
What is wrong with this program statement? void = 10;