- 1
modify operator
int a=21; int b=a++ / ++a; int c=b-- * --b; find the value of a, b and c?
4 Answers
0
Hi! what are your guesses?
0
#include <stdio.h>
int main() {
int x=20;
x=x++ + --x;
printf(" x value:%d \n",x--);
return 0;
}
0
Try this code
0
according to me it should be a=23,b=-1,c=0