mirror of
https://github.com/pkivolowitz/asm_book.git
synced 2026-06-21 03:36:49 +08:00
10 lines
No EOL
140 B
C++
10 lines
No EOL
140 B
C++
#include <iostream>
|
|
|
|
using namespace std;
|
|
|
|
int main(int argc, char * argv[]) {
|
|
while (*argv) {
|
|
cout << *(argv++) << endl;
|
|
}
|
|
return 0;
|
|
} |