+ 3
(Solved) What is the output of this code... , 🥺
What is the output of this code...?? Int a = 10; cout << (a == 9);
2 Respostas
+ 3
👑Mona Singh👑
There could be two outputs -
1. Assuming by 'Int' you meant 'int', it would return false as 10 and 9 are not equal.
2. If your question is correct then this should result in an error as Int is not a datatype but int is.
+ 2
That will output true or false based on a value compared to 9