i'm having error while compiling my code..

key_c_xor = userKeyArray[t]^C;

long long int key_c_xor[8];
int userKeyArray[4];
long long int C[36];

the error that i got was:
error C2109: subscript requires array or pointer type

anyone know how to fix it? thanks

Since key_c_xor is an array, it needs an index: key_c_xor[j] = userKeyArray[t]^C[i];

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.