comment sortir en vert en c

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