I got the following code and it gave me the following error: line 121: error 1549: Modifiable lvalue required for assignment operator
Here's the code snippet:
char lot_prefix[2], proddir[20]
strncpy(lot_prefix, lot_no, 2);
if ( (strncmp(lot_prefix[1],"F",1) == 0)...