- 1
Plse help me with this question. What will be the outcome??
int a=5, b=3,c; c=a++ + --b + b; Plse c'mmon someone
1 Answer
+ 1
c=a++ + --b + b;
execution of above statement
a=5
b=2
then c=5+2+2
9
int a=5, b=3,c; c=a++ + --b + b; Plse c'mmon someone