Ok heres the deal my program compiles fine. But when I run it I get nothing coming up in the console window. I would apreciate any help.

Code:
int main()
{srand ( time(NULL) );

 for(i=5; i++;)
 { for(int x=0; x=4; x++)
   {chro[i][x]=rand()%30;  
   }  
 }

/*****Test******/
for(int g=0;g=5;g++)
{ for(int h=0; h=4; h++)
  {cout<<"Chro["<<g<<"]["<<h<<"]="<<chro[g][h];
   cout<<"\n";
  }
}
/*****Test******/
      cout<<"\n";
      system("PAUSE");
      return 0;
}