[C++ 정리] 짤막정리
using std::string
- string에 대해서만 std 생략
FILE* fp = fopen(filePath.c_str(), “rt”)
fgets(row, 100, fp); char* token = strtok(row, “,”); token = strtok(NULL, “,”);
fgets(row, 100, fp); char* token = strtok(row, “,”); token = strtok(NULL, “,”);
Leave a comment