Question
Write a program that prints the power of integer 2,namely 2, 4, 8, 16, 32, 64, etc. Your while loop should not terminate (i.e., you should creatan infinite loop). To do this, simply use the key word true as the expression for the whilestatement. What happens when you run this program? Write a program that prints the power of integer 2,namely 2, 4, 8, 16, 32, 64, etc. Your while loop should not terminate (i.e., you should creatan infinite loop). To do this, simply use the key word true as the expression for the whilestatement. What happens when you run this program?
Explanation / Answer
please rate - thanks without the system("pause"); things go off the screen toofast to see what is happening. you can get rid of it after you get your answer #include using namespace std; int main() {int a=1; while(true) {a*=2; cout