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.

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

3 Answers

0 votes
answered Jul 15, 2019 by Kranthi Kumar Reddy (150 points)
SYNTAX ==>  pause;
+1 vote
answered Jul 15, 2019 by anonymous
system("pause");
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.
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and and receive answers from other members of the community.
...