컴퓨터/C

C goto

sayyesdoit 2022. 9. 1. 21:11
if()
  goto label1;
else 
  goto label2;
  
label1:
  실행문
  return 0;
label2:
  실행문
  return 0;