[solved] – Question 92975
What will be printed by the following code?
int x=4;
repeat(4){ x = 2 * x + 3; }
cout << x << endl;
Expert Answer
OR
What will be printed by the following code?
int x=4;
repeat(4){ x = 2 * x + 3; }
cout << x << endl;
OR