#include <iostream>
#include <string>
using namespace std;
int main(int argc, char* argv[]) {
cout << argc << endl;
for (int count = 0; count < argc; count++) {
std::string argv_single = argv[count];
//std::stoi(argv_single) -> string을 int로 출력하고 싶을때!
//Boost라이브러리 사용하면 인자 더 편리하게 사용 가능!
cout << argv_single << endl;
}
}
'코딩 > C++' 카테고리의 다른 글
class (0) | 2024.05.28 |
---|---|
ellipsis (0) | 2024.05.28 |
Constructor (0) | 2024.05.28 |
Encapsulation (0) | 2024.05.28 |
vector를 스택처럼 사용 (0) | 2024.03.21 |