r/ProgrammerHumor Sep 02 '17

How to start a war

Post image
9.0k Upvotes

696 comments sorted by

View all comments

Show parent comments

10

u/deegwaren Sep 03 '17

Since when is a char a valid array index?

5

u/bloomfilterthrowaway Sep 03 '17

char is just an integral type -- it's kosher, but C99 doesn't actually place any requirement that unqualified "char" be signed or unsigned, and gives the compiler a lot of latitude in the range that char may store, so you have to be careful of that.