cpp-devshell/main.cpp

11 lines
160 B
C++
Raw Normal View History

2025-12-08 12:14:23 +01:00
#include <iostream>
using namespace std;
2025-12-09 11:23:22 +01:00
int main(int argc, char **argv) {
for (int i = 0; i <= argc; i++) {
cout << argv[i] << endl;
}
return 0;
2025-12-08 12:14:23 +01:00
}