for anyone who doesn't know, the footgun of this in C is that: ``` int a, b, c; ``` in C works, but if you do ``` int* a, b, c; ``` only a is a ptr and b and c are ints