0
My computer's output window doesn't show output it is just finished it so fast.. How i fix it?
Compiler's issue
3 ответов
+ 4
Please show your code.
+ 3
Run your program from within the command prompt.
+ 1
That's not any issue.
Just include the header file:- #include<conio.h>
And then at the end of the program just before the closing curly bracket of void main() write getch();
Example:-
#include<conio.h>
#include<> \\All other required header files as required in your program
void main()
{
Your
Program
Is
Written Here
getch();
}
This will solve your problem...