Main(){ int i =10, j = 20; clrscr(); printf("%d, %d, ", j-- , --i); printf("%d, %d ", j++ , ++i);}
A) 20, 9, 19, 10
B) 20, 9, 20, 10
C) 20, 10, 20, 10
D) 19, 9, 20, 10
-
Interview Candidate
- Dec 10th, 2005
- 10
- 9031
Showing Answers 1 - 10 of 10 Answers
Related Answered Questions
Related Open Questions
Main(){ int i =10, j = 20; clrscr(); printf("%d, %d, ", j-- , --i); printf("%d, %d ", j++ , ++i);}
B) 20, 9, 20, 10
C) 20, 10, 20, 10
D) 19, 9, 20, 10
Related Answered Questions
Related Open Questions