int main(){ int b[3]; if (1){ int a = b[1]; } else if (2){ int * c = &b[2]; } else{ b[0] = 80; } }