What will be the output of the following function?
include <stdio.h>
void main() { int i =2,j=2; printf(“%d %d %d %d”,i,i++,j,++j); }
Reveal answer
Fill a bubble to check yourself
What will be the output of the following function?
void main() { int i =2,j=2; printf(“%d %d %d %d”,i,i++,j,++j); }