> Output(Concole Window) Disappears Within Fraction Of Seconds In C Language Editors.?

Output(Concole Window) Disappears Within Fraction Of Seconds In C Language Editors.?

Posted at: 2014-12-18 
Just try running the program from the command line; the window will not close that way.

Also, Why Did You Capitalize Every Word In Your Update? That's Really Annoying To Read.

You need to freeze the screen to see your output result.

Make sure to include getch() function in the end of your program before closing brace of main() function.

like:

void main()

{

...;

...;

...;

getch();

}

The output window close soon after completing execution of program.So the user will not be able to see the result .to deal with it include a extra getch() at the end of your program.So that output window remains until user press a key.....