Hello, I need help with this problem I came across. What I have is this:
char answers[5][4] = {{'1','2','3','4'},{'10','0','3','0'},{'1','0','0','0'},{'1','2','3','4'},{'1','0','0','4'}};
However, this code does not accept 2 digits..only one. This irks me, and I was wondering if there was a way to add 2 digits.
Note: I am going to convert this to characters, so declaring as int won't work!