What will the following program segments display?
A) int count = 10;
do
{
cout << "Hello World\n";
while (count ++< 1);
B) int v = 10;
do
cout << v ++
while (v < 5);
C) int count = 0, funny =1; serious =0 , , limit = 4;
do
{
Funny++;
Serious += 2;
} while (count++ < limit);
cout << funny<< " " << serious<< “ ”;
cout << count << endl;
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.