2020-06-10 13:21:35 -04:00
|
|
|
int a;
|
|
|
|
|
|
|
|
unsigned b;
|
|
|
|
unsigned int c;
|
|
|
|
|
|
|
|
long d;
|
|
|
|
long int e;
|
|
|
|
unsigned long f;
|
|
|
|
unsigned long int g;
|
|
|
|
|
2020-06-18 12:20:02 -04:00
|
|
|
short h;
|
|
|
|
short int i;
|
|
|
|
unsigned short j;
|
|
|
|
unsigned short int k;
|
|
|
|
|
|
|
|
volatile int l;
|
|
|
|
int volatile static m;
|
2020-06-11 06:30:51 -04:00
|
|
|
|
|
|
|
const int x;
|
|
|
|
long const y;
|
2020-06-10 13:21:35 -04:00
|
|
|
|
2020-06-12 10:30:32 -04:00
|
|
|
typedef int MyInt;
|
|
|
|
MyInt z = 1;
|
|
|
|
|
2020-06-10 13:21:35 -04:00
|
|
|
int main(void) {
|
|
|
|
return 0;
|
|
|
|
}
|