asm_book/section_1/hello_world/v4.c
2022-05-16 21:28:28 -05:00

12 lines
No EOL
153 B
C

#include <stdio.h>
int main(int argc, char * argv[]) {
top:
if (*argv == NULL)
goto bottom;
puts(*(argv++));
goto top;
bottom:
return 0;
}