std::string str = "Hello";
printf(str); // 錯誤,應該使用 printf("%s", str.c_str());
std::string str = "Hello";
printf("%s", str); // 錯誤,應該使用 printf("%s", str.c_str());
std::string str = "Hello";
printf("%s", str.c_str()); // 沒有換行符
std::string str = "Hello";
printf("%d", str.c_str()); // 錯誤,應該使用 %s 占位符