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

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!