int a=5;
int c= a++ + ++a + a++;
printf("%d%d",a,c);
Answers
Answered by
0
Answer:
output will be
a=8
c=19
Similar questions