QUESTION 6 What is the output of the below code? int n = 1; while (n < 5) cout <
-
answerhappygod
- Site Admin
- Posts: 899604
- Joined: Mon Aug 02, 2021 8:13 am
QUESTION 6 What is the output of the below code? int n = 1; while (n < 5) cout <
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.
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!