+ 1
x =12 printf(%d %d ,++x, x++)
What is the output of this code?
2 Respuestas
+ 5
Nothing.
it will generate an error
you should use code playground for such type of questions
+ 4
try with:
int x = 12;
printf("%d %d", ++x, x++) ;
What is the output of this code?