Hi im learning C++ right now but this script has a error i cant figure out pls help me
#include <windows.h>
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
using namespace std;
int main(int argc, char *argv[])
{
int a;
string array [42] = {"A","B","C","D","E","F","G","H","I","J","K","L"," M","N","O","P","Q","R","S","T","U","V","W","X","Y" ,"Z","0","1","2","3","4","5","6","7","8","9", " ", " ","?","!","#","*"};
system("TITLE The MaTrIx by Applesouce");
system("color 0A");
while(1)
{
Sleep(25);
for (int i=0; i<20; i++)
{
a=rand()%42;
cout << " " << array[a] //1 space
cout << " "; //2 space
}
cout << endl;
}
getch();
return 0;
}