C 中的 puts() 函数
puts() 函数定义在<stdio.h>
头文件。
原型:
int puts(const char *string);
参数: const char *string
返回类型: int
函数的使用:
通过puts()函数,我们将字符串写入输出流stdout
它们存储到字符数组中,直到遇到换行符。这函数原型 puts()是int puts(const char *string);
这里的字符串是写入流的字符数组。它为成功的操作返回一个非负值,为失败返回一个 EOF。
C 中的 puts() 示例
#include <stdio.h>
int main()
{
char ch[100];
printf("Enter any string\n");
//get the string
gets(ch);
printf("\nThe string is - ");
//print the string
puts(ch);
return 0;
}
输出
相关用法
- C语言 putchar()用法及代码示例
- C语言 putpixel()用法及代码示例
- C语言 putc()用法及代码示例
- C语言 pthread_cancel()用法及代码示例
- C语言 pthread_equal()用法及代码示例
- C语言 printf() and scanf()用法及代码示例
- C语言 pthread_self()用法及代码示例
- C语言 perror()用法及代码示例
- C语言 printf()用法及代码示例
- C语言 pieslice()用法及代码示例
- C语言 fread()用法及代码示例
- C语言 feof()用法及代码示例
- C语言 imagesize()用法及代码示例
- C语言 getarcoords()用法及代码示例
- C语言 strcspn()用法及代码示例
- C语言 setlinestyle()用法及代码示例
- C语言 showbits()用法及代码示例
- C语言 sprintf()用法及代码示例
- C语言 outtextxy()用法及代码示例
- C语言 isgraph()用法及代码示例
注:本文由纯净天空筛选整理自Souvik Saha大神的英文原创作品 puts() function in C language with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。