mirror of
https://github.com/pkivolowitz/asm_book.git
synced 2026-06-21 01:56:47 +08:00
12 lines
No EOL
159 B
C++
12 lines
No EOL
159 B
C++
#include <iostream>
|
|
|
|
using namespace std;
|
|
|
|
int main(int argc, char * argv[]) {
|
|
top:
|
|
if (*argv) {
|
|
cout << *(argv++) << endl;
|
|
goto top;
|
|
}
|
|
return 0;
|
|
} |