#include #include void main() { int i; clrscr(); printf("TEST\n"); textbackground(4); textcolor(10); print("Enter a string:"); normal_color(); print("Is it OK??!"); getch(); } print(char str[500]) { int i; for(i=0;str[i]!='\0';i++) { cprintf("%c",str[i]); } printf("\n"); } normal_color() { textattr(7); }