Visual C++ - Signed integers
Types for storing signed integers.Visual C++ .NET
Other pieces of example codes:long long y = -(1512345 / 70);
int y = -(15123 / 70);
short y = -(1500 % 60);
signed char y = -(15 % 4);
You can find it in the following collections: integers | numbers | data types
Signed integers in another programming language: