mirror of
https://github.com/pkivolowitz/asm_book.git
synced 2026-06-21 05:46:51 +08:00
10 lines
No EOL
126 B
C++
10 lines
No EOL
126 B
C++
#include <stdio.h>
|
|
|
|
int main(int argc, char * argv[]) {
|
|
top:
|
|
if (*argv) {
|
|
puts(*(argv++));
|
|
goto top;
|
|
}
|
|
return 0;
|
|
} |