Hello guys.
I've got a query which is most likey really simple. I've got an array of char's thats :
char temp[10] = "abcd";
I'm wondering why I can't put these into char a;
since char a = 'abcde' would be legal right? Or can a single char only hold 1 char?
Since an int can hold 123456789. and so can the int array.