Question #10: From line 6 in the code below which labels can you access using a goto statement? 57% on 3599 times asked
1 2 3 void foo(int x) 4 { 5 pointa: 6 7 pointb: 8 9 pointc: 10 } 11 12 int main(int argc, char** argv) 13 { 14 foo(5); 15 16 pointd: 17 18 return 0; 19 }