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

int main() {
int z=6;
printf("%d%d%d%d",--z,++z,++z,z--);

return 0;
}

Posted on by