mirror of
https://github.com/pkivolowitz/asm_book.git
synced 2026-06-21 04:36:47 +08:00
12 lines
No EOL
153 B
C
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;
|
|
} |