Output of the following c++ code


What is the output of the following C++ code?
int count = 1;
int y = 100;
while (count < 100)
{
y = y - 1;
count++;
}
cout << " y = " << y << " and count = " << count << endl;

Request for Solution File

Ask an Expert for Answer!!
C/C++ Programming: Output of the following c++ code
Reference No:- TGS086641

Expected delivery within 24 Hours