I start C tomorrow and reading my book. When I run and compile this code it comes up in DOS and runs the code but then the DOS window closes. I'm new with C, can someone tell me why the DOS window flashes and then closes? Here's my code:
#include <stdio.h>
int main( void )
{
printf( "\t\"whoops\b\b\b\bew\n\"\n");
return 0;
}
Thanks