Answering Yes or No in C++...using only stdio.h and
conio.h..........help me please...?
here's must be the output of the program:
Screen A
Exam No. items Score
1 20 20
2 35 35
Another Entry? [Y] or [N] :
Screen B:
Record No. Student's Name:
1 Fernando Torres
2 Chuck Norris
Note: if you press Y, the program must repeat the procedure
in screen A, then if N, the program must proceed to the
screen B....Please Help me out............
Answer / nipun
You can use while loop for this. Insert your code for screen
A in the while loop and just let it run if the user enters
a 'Y' and if the user choses 'N' then go to screen B out of
the loop
Or
you can use label:
ex:
main()
{
code....
......
label:
code for screen A...
......
......
printf("Another Entry? [Y] or [N] :");
scanf("%s", &op);
if(choice=='y' || choice=='Y')
{
goto label;
}
}
| Is This Answer Correct ? | 1 Yes | 0 No |
To generate the series 1+3+5+7+... using C program
what is run time error?
what is meant for variable not found?
printy(a=3,a=2)
Using string functions write a program that will accept the name of the capital as input value and will display the corresponding country. ------------------------ Capitals Countries ------------------------ Capitals Countries Ottawa Canada Moscow Russia Rome Italy I can't not get it to run properly
write a profram for selection sort whats the error in it?
UINT i,j; i = j = 0; i = ( i++ > ++j ) ? i++ : i--; explain pls....
What is probability to guarantee that the task a programmer is going to create will be created and be able to run on a particular system (RTOS/GPOS).
What is the code for following o/p * * * * * * * * * * * * * * * *
what are the techniques for reducing the fragility of a memory bug?
what is the large sustained error signal that eventually cause the controller output to drive to its limit
Given that two int variables, total and amount, have been declared, write a loop that reads integers into amount and adds all the non-negative values into total. The loop terminates when a value less than 0 is read into amount. Don't forget to initialize total to 0. Instructor's notes: This problem requires either a while or a do-while loop.