码迷,mamicode.com
首页 > 编程语言 > 详细

C语言里的puts()函数怎么用

时间:2015-12-08 18:24:54      阅读:387      评论:0      收藏:0      [点我收藏+]

标签:

puts()函数是C语言中的输出函数。
uts()函数用来向标准输出设备(屏幕)写字符串并换行,其调用方式为,puts(s);其中s为字符串字符(字符串数组名或字符串指针)。
函数原型:int puts(const char *string);
参数:string const的字符类型的指针
返回值: int类型,执行成功输出的字节数,执行失败返回EOF。
注意:puts输出字符串时要遇到‘\0’也就是字符结束符才停止,所以在字符串的最后一个要是 ‘\0‘符。
实例:
#include <stdio.h>
#include <conio.h>
int main(void)
{
int i;
char string[20];
for(i=0;i<10;i++)
string[i]=‘a‘;
string[10]=‘\0‘;//注意
puts(string);
getch();
return 0;
}

C语言里的puts()函数怎么用

标签:

原文地址:http://www.cnblogs.com/ydfq-home/p/5029725.html

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