InterviewSolution
Saved Bookmarks
| 1. |
OnsQ1What will be the output of the following code?1.2.3.2.4.#include using namespace std;void fun(int x, int y){10;y = 11;}int main()5.y6.37.8.9.10.11.int y12.int x = 12;10;fun(x, y);cout |
|
Answer» Answer: 12+15................ |
|