Question: #include int main() { int nstart, nstop; while (1) { printf(Asking user to enter nstart value ); scanf_s(%d, &nstart); printf(Asking user to enter nstop value
#include
int main()
{
int nstart, nstop;
while (1) {
printf("Asking user to enter nstart value ");
scanf_s("%d", &nstart);
printf("Asking user to enter nstop value ");
scanf_s("%d", &nstop);
int x = 1;
int y = nstart;
while (y <= nstop) {
x *= y;
y++;
}
printf("nstart = %d", nstart);
printf("& nstop =%d", nstop);
printf("====> zNo(%d,%d) = %d", nstart, nstop, x);
getchar();
getchar();
}
return 0;
I want to make a flow chart of these codes. It is a Visual Studio C++. It is a infinte looping question.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
