#include #include #include int32_t m = 175; int32_t scores[m]; int main(int argc, char **argv) { // What happens when we move int32_t scores[m] to here? printf("scores[0] = %d\n", scores[0]); return EXIT_SUCCESS; }