what the results of following expression X=1+60%12*12
Answers
Answered by
0
#include <stdio.h> void main() { int x=10; x +=(x++)+(++x)+x; printf("%d",x); } ... ERROR : Expression syntax. 12 ... x= 60; x= 70; x= 0; x= 1.
Similar questions