Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started