Hi,
I have recentlu installed borland C++ 5.01 on my windows XP machine.It works fine except that when the output window comes up, it closes within a flash even before i can see the output. I dont know how to solve this problem.
anyone who can help me with this!!!
a million thanks in advance. Really need this solution BADLY.
thanks
biobee
Comments
: I have recentlu installed borland C++ 5.01 on my windows XP machine.It works fine except that when the output window comes up, it closes within a flash even before i can see the output. I dont know how to solve this problem.
: anyone who can help me with this!!!
:
: a million thanks in advance. Really need this solution BADLY.
:
: thanks
: biobee
:
before the return of main add a cin...
: : I have recentlu installed borland C++ 5.01 on my windows XP machine.It works fine except that when the output window comes up, it closes within a flash even before i can see the output. I dont know how to solve this problem.
: : anyone who can help me with this!!!
: :
: : a million thanks in advance. Really need this solution BADLY.
: :
: : thanks
: : biobee
: :
: before the return of main add a cin...
:
: another solution like Microsoft's one
: at first line of a program add this
#include
: at the last line and before return statement add these
cout<<endl<<"press a key to exit...";
getch();
: have fun....
: lucky boy