C++ printf问题
大家讲道理
大家讲道理 2017-04-17 11:02:11
0
1
591

我们都知道c++都使用cout输出的,但也可以使用printf;

printf("字符串:\n 字符串1:%s\n 字符串2:%s\n 字符串3:%s\n",str1,str2,str3);

VC6编译通过,但是不能运行,一运行就出现结束运行停止,被强制关闭;

我尝试使用gcc编译;
string类怎么了?不能使用

大家讲道理
大家讲道理

光阴似箭催人老,日月如移越少年。

全部回覆(1)
左手右手慢动作

你想printf一个string就得这么用,不然肯定coredump,VC6太古老了不要用了

string str;
printf("%s", str.c_str());
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!