在C++中,输出字符串可以使用`std::cout`或者`std::printf`函数来实现。
使用`std::cout`输出字符串的方法如下:
```cpp
#include
int main() {
std::string str = "Hello, World!";
std::cout << str << std::endl;
return 0;
}
```
使用`std::printf`输出字符串的方法如下:
```cpp
#include
int main() {
std::string str = "Hello, World!";
std::printf("%s\n", str.c_str());
return 0;
}
```
注意:在使用`std::printf`输出字符串时,需要通过`c_str`方法将`std::string`类型转换为C风格的字符串。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: c++函数递归适合初学者吗