include <stdio.h> void func(); void func() { A: printf("NO!\n"); B: printf("YES!\n"); } int main() { goto A; func(); goto B; return 0; }