Q. Find the output of the following program
Code:main(){
int a, b = 10;
a = 95 / 10;
cout << a << endl;
}
β
Correct Answer: (A)
9
main(){
int a, b = 10;
a = 95 / 10;
cout << a << endl;
}
You must be Logged in to update hint/solution