Difference between char and char[1]
The main difference is just the syntax you use to access your one char. By “access” I mean, act upon it using the various operators in the language, most or all of which do different things when applied to a char compared with a char array. This makes it sound as if x and y … Read more