Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.
Login
Login
OnlineGDB Q&A
Questions
Unanswered
Tags
Ask a Question
Ask a Question
how to make a pause in stdio.h
+4
votes
asked
Jul 8, 2019
by
Snoopy
(
160
points)
when it is print f it goes like a machine gun onto the screen how to make it come out like a shotgun
Please
log in
or register to answer this question.
3 Answers
0
votes
answered
Jul 15, 2019
by
Kranthi Kumar Reddy
(
150
points)
SYNTAX ==> pause;
Please
log in
or register to add a comment.
+1
vote
answered
Jul 15, 2019
by
anonymous
system("pause");
Please
log in
or register to add a comment.
0
votes
answered
Jul 16, 2019
by
Abhivirusonline
(
180
points)
At the end type :
printf
(
"Press enter to continue...\n"
);
getchar
();
just before closing bracket of main() body.
Please
log in
or register to add a comment.
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and receive answers from other members of the community.
...