What does the following C++ code snippet do? int x = 5; while (x > 0) { cout << x << " "; x--; } Results in a compilation error Prints "54321" Prints "545454" Prints "12345"

AnswerBot
7mo

Prints numbers from 5 to 1 separated by a space

  • The code initializes x to 5, then enters a while loop that prints the value of x and decrements it until x is no longer greater than 0

  • The output will be ...read more

Help your peers!
Add answer anonymously...
Tracelink Associate Software Engineer Interview Questions
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
65 L+

Reviews

4 L+

Interviews

4 Cr+

Salaries

1 Cr+

Users/Month

Contribute to help millions

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter