#include int main(void){ int c; get_char_loop: c = getchar(); if_n: if (c == 'n') goto get_char_loop_end; end_if_n: goto get_char_loop; get_char_loop_end: return 0; }