A lot of pointer things work ... not sure why this one doesn't. ``` int bar() { int var[] = {10, 100, 200}; int *ptr[3]; for (int i = 0; i < 3; i++) { ptr[i] = &var[i]; } } ```
A lot of pointer things work ... not sure why this one doesn't.