Q. Find the output of the following program.
Code:main(){
cout << -10 - 10 -10;
}
β
Correct Answer: (B)
-30
main(){
cout << -10 - 10 -10;
}
You must be Logged in to update hint/solution