Page 1 of 1

What is output by the following code? int i = 4; int j = 3; if (i = j) { std::cout << i << " " «j« std::endl; } else { s

Posted: Mon May 02, 2022 12:05 pm
by answerhappygod
What Is Output By The Following Code Int I 4 Int J 3 If I J Std Cout I J Std Endl Else S 1
What Is Output By The Following Code Int I 4 Int J 3 If I J Std Cout I J Std Endl Else S 1 (10.64 KiB) Viewed 43 times
What is output by the following code? int i = 4; int j = 3; if (i = j) { std::cout << i << " " «j« std::endl; } else { std::cout <<j« " " «i << std::endl; } Select one: O 44 O 43 O 33 O 34