- 1
Find the value of a and b of this program.? And explaned it??
int a,b; a=10; b=25; a=b++ + a++; b=++b + ++a; printf("\n %d %d \ n",a,b); return 0;
4 ответов
0
int a,b;
a=10;
b=25;
a=b++ + a++; // a = 25 + 10
b=++b + ++a; //b= 27 + 36
printf("\n %d %d \n",a,b);// a=36 and b=63
return 0;
0
If a=10 and b=++a then find the value of a, b
0
Plz explain dz tpoic sir
- 1
nitin khambhala sir. a ka value me aapne 25 + 10 = 36 kaise bataya..plz explain this topics sir..