Hacker News new | ask | show | jobs
by yakubin 1298 days ago
int, as all other integer types except char, is indeed signed by default.

Aside: signedness semantics of char is implementation-defined. However, the type char itself is always distinct from both signed char and unsigned char.