Question: What does this loop do? int x = 1; while (x = 12) { cout < < x < < endl; x = x

What does this loop do? int x = 1; while (x = 12) { cout < < x < < endl; x = x + 2; }
Step by Step Solution
There are 3 Steps involved in it
int x 1 initialize x to 1 loop that continues until x is eq... View full answer
Get step-by-step solutions from verified subject matter experts
