while debugging i got error like Lvalue Required....
When *compiling*. When you press debug, it compiles and links first and then debug.
plse suggest a solution..
Identify location ( by line number mentioned in error message). Identify left part of the assignment. Fin wy it can't be there.
-
char *temp[10];
-
int i;
-
for(i = 0;i != 16;i++)
-
temp[15-i] =
'Off by 6' error.
... And you should not return pointers to local variable in this way.