#include<stdio.h> #include<conio.h> main() { int gd = DETECT, gm; initgraph(&gd, &gm, "C:TCBGI"); textcolor(RED); // You can type "4" instead of "RED" cprintf("Hello, World!"); getch(); return 0; }