Question: The following program displays something different than the output shown below. Fix the program to correctly produce the output shown below: Output: 100 98 96

The following program displays something different than the output shown below. Fix the program to correctly produce the output shown below:

Output:

100

98

96

94

92

Z

W

T

Q

N

Program:

#include

int main() {

// Character Z has ASCII of 90

int a = 100;

int co = 1;

while (co<20) {

if(co < 10) {

printf("%d ", a);

a += 2;

co += 2;

} else {

printf("%d ", a);

a += 3;

co += 2;

}

}

return 0;

}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!