InterviewSolution
Saved Bookmarks
| 1. |
Write the values of c and d after execution of following code : int a = 1;int b = 2,int c,int d;c = ++b;d = a++;c++; |
|
Answer» Output c = 4, d = 2. |
|