Why use Miracle C . I know some books say use it . Thou I would prefer if you used VS or Bore land hehe or Dev C++ compiler .
but your problem can be solved like this
#inlcude<stdio.h>
#include<conio.h>
int main()
{
printf( "Hello Nairaland!!!" );
getch(); /* this waits for the key press */
}
#inlcude<stdio.h>
#include<conio.h>
int main()
{
printf( "Hello Nairaland!!!" );
system( "pause" );/* this is a DOS command that pauses till you hit any button .
System () function Executes the dos Command You can slo put Dir e.g system("dir"); to see the directory. */
}