int

suggest change

Denotes a signed integer type with “the natural size suggested by the architecture of the execution environment”, whose range includes at least -32767 to +32767, inclusive.

int x = 2;
int y = 3;
int z = x + y;

Can be combined with unsigned, short, long, and long long (q.v.) in order to yield other integer types.

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents