Originally posted here by invader
WTF, ive never used Bloodshed before, use turbo, simple and best
Im in enough confusion as it is.

Originally posted here by cgkanchi
The function getch() and the Alt+F5 combo work only with Turbo/Borland C++. So you have to use system("pause" instead.
Cheers,
cgkanchi
System pause didn't work either, and I get the message Implicit declaration of function int getch (...) But thanks.


Originally posted here by black_death
#include<stdlib.h>
#include<conio.h>
#include<iostream.h>
void main(){
cout<<"Hello world";
cout<<"\npress any key to quit....";
while(getch()=='\0'){
}
_exit(0);
}
I've tried the one you PM, it compiled successfully but It didn't run.

Anymore help/info that you want to add, feel free to do so.

Thank you for all the help .