I'm using K&R C code and the Dev-C compiler. I'm making a DOS console and used this code.....
#include <stdio.h>
int main(int argc, char *argv[])
{
printf( "Hello, people\n" );
}
The program executes but closes after it displays the message, any one know how I keep the program open ?
Many Thanks




Reply With Quote