Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR C

how to output in green in c

#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; } 
Source by www.quora.com #
 
PREVIOUS NEXT
Tagged: #output #green
ADD COMMENT
Topic
Name
2+8 =