Define and use int
#include <stdio.h> int main(void) { int i; i = 10; i = -i; printf(" i = %d", i); return 0; }