What will be the output of the below code
#includestdio.h

int main() {
int i=10;
int j=++i;
printf("%d%d",i,j);

return 0;
}

Posted on by