What will be the output of the following program
#include<stdio.h>
void main()
{
int i=20;
i-=i+++++i++;
printf("%d",i);
}

Answers were Sorted based on User's Feedback



What will be the output of the following program #include<stdio.h> void main() { int i=..

Answer / suji

THE PROGRAM DOES NOT RETURN ANY THING.. IT WILL SHOW THE ERROR

Is This Answer Correct ?    10 Yes 2 No

What will be the output of the following program #include<stdio.h> void main() { int i=..

Answer / shajitha

Answer will be 42.
i++ =20
i+++=20+
i+++++i=20+22
i+++++i++=42

Is This Answer Correct ?    7 Yes 6 No

What will be the output of the following program #include<stdio.h> void main() { int i=..

Answer / j mahesh

i=20
i++ + ++i =20 + 21=41
i-=41
i=i-41 =20-41
i= -21

Is This Answer Correct ?    4 Yes 4 No

What will be the output of the following program #include<stdio.h> void main() { int i=..

Answer / jeevitha

i-=i++ + ++i++
i-=41++
i-=42
i=20-42
i=-22

Is This Answer Correct ?    1 Yes 2 No

What will be the output of the following program #include<stdio.h> void main() { int i=..

Answer / anil kumar singh

this program depend on compiler dos turbo3 cpp
error msg:Lvalue required

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More C Interview Questions

What are the features of c languages?

0 Answers  


What do you mean by c what are the main characteristics of c language?

0 Answers  


Why do we use c for the speed of light?

0 Answers  


c program to print a name without using semicolon

9 Answers   TCS, Wipro,


how can u print a message without using any library function in c

1 Answers   NIIT,






what are the 10 different models of writing an addition program in C language?

0 Answers  


Why is c known as a mother language?

0 Answers  


what is software?

7 Answers   Wipro,


Differentiate between static and dynamic modeling.

0 Answers   Wipro,


What is && in c programming?

0 Answers  


What is indirection? How many levels of pointers can you have?

0 Answers   Aspire, Infogain,


In a header file whether functions are declared or defined?

0 Answers   TISL,


Categories