2016年6月23日

函数返回值为字符串的几种写法

摘要: #include #include #include #include #include using namespace std; void fun(char *s){//通过形参返回字符串 strcpy(s, "hello"); } char *fun2(char *s){//另一种写法, strcpy(s, "hello"); return s;//返回形... 阅读全文

posted @ 2016-06-23 19:58 张明明_1 阅读(4137) 评论(0) 推荐(0) 编辑

导航