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
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.
Posted: Sun May 15, 2022 8:48 am
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.