C++ question:
#include
#include
#include
void main()
{
clrscr();
randomize();
int PICKER;
PICKER=random(3);
char COLOR[][5]={"BLUE","PINK","GREEN","RED"};
for (int I=0; I<=PICKER; I++)
{
for (int J=0; J<=I; J++)
cout< cout< }
getch();
}

Answer :

rsmith6559
There's no "using namespace std;" statement. I see no reason for COLOR to be two dimensional or have a length of 5 with only four elements. The inside of the for loop with variable 'J' makes no sense.
Pirahna16

yes i totally agree, some of if makes no sense

Other Questions