Computer Science, asked by BrainHunter, 1 year ago

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 sidkarthik
1
a=5, b=7, c=6, d=7
value of d will only charge while giving output
Similar questions