C - Signed integers
Types for storing signed integers.C
Other pieces of example codes:signed char x= -5;
short x= -1234;
long x= -12345;
You can find it in the following collections: integers | numbers | data types
Signed integers in another programming language: