Files
cs420/examples/c/typedef.c
2020-04-23 23:07:23 +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;
}