Saved Bookmarks
| 1. |
Consider the following code segment in C++. If a is stored at memory location 4020 and size of into is 4, then predict the output. int *x, a; x = &a; cout << x ++ << “\n”; . cout << ++ x; |
|
Answer» The output is 4020 4028 |
|