IF: int a=5; int b=7; int c=++a; int d=b--; What is the values of variables a, b, c and d?
Answers
Answered by
1
a=5, b=7, c=6, d=7
value of d will only charge while giving output
value of d will only charge while giving output
Similar questions