Question: Compile and run countup.c. It is supposed to print the integers 1 through 20 on separate lines and then stop. What does it actually print?
Compile and run countup.c. It is supposed to print the integers 1 through 20 on separate lines and then stop. What does it actually print? Fix it so that it does the right thing. Add comments to the code to document the program properly.
/* A program to count from 1 to 20, one per line */
int main()
{ int count;
count = 1;
while (count < 20)
{ printf("%d", count); count = count + 1;
}
}
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
