Page 1 of 1

QUESTION 6 What is the output of the below code? int n = 1; while (n < 5) cout <
Posted: Sun May 15, 2022 8:48 am
by answerhappygod
Question 6 What Is The Output Of The Below Code Int N 1 While N 5 Cout N N O 123 456 O 111 This Is An 1
Question 6 What Is The Output Of The Below Code Int N 1 While N 5 Cout N N O 123 456 O 111 This Is An 1 (21.56 KiB) Viewed 35 times
QUESTION 6 What is the output of the below code? int n = 1; while (n < 5) cout <<n<< n++; O 123 456 O 111... (this is an infinite loop) 0 1 2 3 4 5 0 1 2 3 4 O This code will not compile.