unsigned char card_num= "153845";
this particular code line has the error: non address/-constant variable. please tell me what is it that i am not getting it right??? please help me.....
You're failing to read or understand your C textbook when it comes to what a character constant might look like.
unsigned char *card_num = "153845"; unsigned char card_num[] = "153845";