Q. What will be the output of the following code?
int a = 5;
int b = 2;
cout << a / b;
int a = 5;
int b = 2;
cout << a / b;
β
Correct Answer: (B)
2
You must be Logged in to update hint/solution