655 views
0 votes
0 votes
#include int main() { int i = 1; printf("%d %d %d\n", i++, i++, i); return 0; }

Please log in or register to answer this question.

Related questions

1 votes
1 votes
1 answer
1
3 votes
3 votes
3 answers
2
Rudra Pratap asked Jul 20, 2018
1,835 views
#include <stdio.h int main() { static int i=5; if( i) { main(); printf("%d ",i); } }