
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Stop C++ Console Application from Exiting Immediately
Sometimes we have noticed that the console is being closed immediately after displaying the result. So we cannot see the result properly. Here we will see how we can stop the console from closing.
The idea is very simple. We can use the getchar() function at the end. This will wait for one character. If one character is pressed, the console will exit.
Example
#include <iostream> using namespace std; int main() { cout << "Hello World" << endl; getchar(); }
Output
Hello World 5
Here button 5 was pressed when it is waiting for a character.
Advertisements