jdechirico
Programmer
Hello,
i am trying to take data entered via the command line and assign it to a variable,
The affected values/fields:
Before main
#define KEY_BYTES 24
After main
unsigned char keyData[KEY_BYTES];
keyData = argv[2];
The compiler is complaing that keyData must be a modifiable lvalue, whats it crabbing about?
i am trying to take data entered via the command line and assign it to a variable,
The affected values/fields:
Before main
#define KEY_BYTES 24
After main
unsigned char keyData[KEY_BYTES];
keyData = argv[2];
The compiler is complaing that keyData must be a modifiable lvalue, whats it crabbing about?