Computer Science, asked by jntrbharathkumpf7k3q, 1 year ago

int result=120; printf("%d %d %d",result,result++,++result); return 0; }

Answers

Answered by vijay2019
0
120 120 122 is the right ans.
in first same print value =120

2nd post incrent increment( result++ ) so value=120


3rd pre incrent increment( ++result) so value=122.
Similar questions