Ask a Question

explain the OUTPUT OF THE PROGRAM ; #include int main() { int i=5; printf("%d %d %d",i,i++,++i); retrun 0; }


Chinmoy Kumar

on 2015-03-24 09:30:00  

It should be 5 5 7

neelkamal

on 2015-03-29 09:30:00  

ans will be 7 6 6 follow the LIFO order.

Biprajit

on 2015-04-18 09:30:00  

7 6 6 Neelkamal . Great work bro..