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