Here is my code:

Code:
#include <stdio.h>
#include <conio.h>
#include <stdlib.h>
main()
{
clrscr();
system("Color F0");


printf("Hello world!");
getch();
return 0;


}