Files
cs420/examples/typedef.c
2020-04-01 10:54:46 +09:00

11 lines
130 B
C

typedef int i32_t;
typedef i32_t* p_i32_t;
int main() {
i32_t a = 0;
p_i32_t const b = &a;
*b = 1;
return *b;
}