Determine what would be outputted to the screen from the following code. (20 Poi
ID: 3569979 • Letter: D
Question
Determine what would be outputted to the screen from the following code. (20 Points)
int j = 12;
int n = 7;
do {
cout << " counting " << j;
j+=3;
n++;
} while(j < 16);
cout << " n:" << n;
void m(int & number, const int numbers[])
{
number = 1001;
numbers[0] = 5555;
}
int main()
{
int x = 1;
int y[10];
y[0] = 1;
m(x, y);
cout <<
Explanation / Answer
this code has a error has do loop is not inside the main.
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.