码迷,mamicode.com
首页 > 其他好文 > 详细

printf()

时间:2018-11-22 21:05:14      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:str   printf   字符串   har   char*   bsp   c_str   stc   %s   

string、char[]、char*、const char*;  输出都一样

printf只能输出c语言中的内置数据,string不是c语言内置数据;

cout可以输出string字符串,是因为string中重载了“<<”操作符;

printf_s("%s\n", arrc); \\char[]
printf_s("%s\n", str.c_str()); \\string
printf_s("%s\n", constc); \\const char *
printf_s("%s\n", c); \\char *

printf()

标签:str   printf   字符串   har   char*   bsp   c_str   stc   %s   

原文地址:https://www.cnblogs.com/wllwqdeai/p/10003300.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!