Home » Categories » C » What is the output of the following ?
What is the output of the following ?
0
What is the output of the following ?

int i;
i=1;
i=i+2*i++;
printf(%d,i);


a.3
b.2
c.4
d.1
 
Asked By : yamuna Categories : CProgrammingTechnical
  Answer:   c. 4
Post Your Answer
Previous Question
Next Question
Related Questions