Answered step by step
Verified Expert Solution
Question
1 Approved Answer
This is supposed to be starting at 1 and increasing to stop at the users age they enter but it goes into an infinite loop
This is supposed to be starting at 1 and increasing to stop at the users age they enter but it goes into an infinite loop and I cant figure out why in my Programming course.
#include
int main()
{
int age;
int counter;
printf(" Please type in your age. ");
scanf(" &b", &age);
for (counter = age; counter >= age; counter++)
{ printf(" Happy Birthday! (year %d) ", counter); }
while (age > counter);
return;
}
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