MULTI-COLOR RESULT IN C++


#include<iostream.h>
#include<conio.h>
void main()
{
int c;
clrscr();
for(c=0;c<=15;c++)
{
textcolor(c);
cprintf("\nNAQSH");
}
getch();
}