Search Results

1
vote

Why are C character literals ints instead of chars?

I didn't know this indeed. Before prototypes existed, anything narrower than an int was converted to an int when using it as a function argument. That may be part of the explanation. …
3
votes

Why use boolean instead of char?

About boolean Most other answers get it wrong - alignment and speed is why a programmer should stick to int for loop counters, not why the compiler can make a …