how to output in green in 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; }