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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。