#include void main() { int i=1; printf("%d",++i); printf("%d",i++); } choose output of the above program
2,2
1,3
2,3
1,2