Answers for "how to output in green in c"

0

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; } 
Posted by: Guest on July-05-2021

Code answers related to "how to output in green in c"

Browse Popular Code Answers by Language