mirror of
https://github.com/kmc7468/cs420.git
synced 2025-12-15 15:08:52 +00:00
11 lines
130 B
C
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;
|
|
}
|