What I really want to do is divide a char into sub chars. I juat tried
char subChar[4];
subChar=(myChar + 4, 2);
but I got the error
error: incompatible types in assignment of 'int' to 'char [4]'
What I really want to do is divide a char into sub chars. I juat tried
char subChar[4];
subChar=(myChar + 4, 2);
but I got the error
error: incompatible types in assignment of 'int' to 'char [4]'