#include using namespace std;int main(){ string str="123abc"; cout<
当前位置:   article > 正文

C++ 中 printf输出string字符串的方法_c++ printf 字符串

c++ printf 字符串

C++ 中 printf输出string字符串不能直接printf("%s",str);非常不方便,一个一个字符输出也不现实。
这里可以借助str.c_str()函数对字符串str进行转换,再输出。

#include  <stdio.h>
#include <iostream>
using namespace std;
int main()
{
    string str="123abc";
    cout<<str<<endl;
    printf("%s\n",str.c_str());
    return 0;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

输出如下
在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/347427
推荐阅读
相关标签