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;
|
|
|
|
|
|
|
|
volatile int i;
|
2020-06-11 06:30:51 -04:00
|
|
|
int volatile static j;
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|