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


Please Help Members By Posting Answers For Below Questions

Why we use void main in c?

597


What are the types of assignment statements?

630


Distinguish between actual and formal arguments.

589


How the c program is executed?

632


the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none

646






Differentiate between ordinary variable and pointer in c.

617


Explain can you assign a different address to an array tag?

648


What are dangling pointers? How are dangling pointers different from memory leaks?

623


What is the right way to use errno?

621


Explain what is the benefit of using const for declaring constants?

614


A SIMPLE PROGRAM OF GRAPHICS AND THEIR OUTPUT I WANT SEE WAHAT OUTOUT OF GRAPHICS PROGRAM

1699


When should we use pointers in a c program?

633


Explain what does a function declared as pascal do differently?

642


What is the code for 3 questions and answer check in VisualBasic.Net?

1691


Is main a keyword in c?

632