函数gets()
用于扫描来自用户的字符串,没有任何\n
或直到\n
性格。这个函数来自 string.h 类,执行与字符串相关的工作。
例:
gets(str) ; User input:"I AM A STRING" Output: I AM A STRING
你也可以使用scanf()
这比这个函数有更多的选择。
stdio.h - C 中的 gets() 函数示例
#include <stdio.h>
int main()
{
//initializing the type of variables
char str[50];
char c;
//message for user
printf("Please enter a string:");
gets(str);
//printing the result
printf("Your String:%s\n\n", str);
//message for user
printf("Please enter a character:");
c = getchar();
//printing the result
printf("Your Character:");
putchar(c);
return (0);
}
输出
相关用法
- C语言 getarcoords()用法及代码示例
- C语言 getchar()用法及代码示例
- C语言 getc()用法及代码示例
- C语言 getpixel()用法及代码示例
- C语言 getx()用法及代码示例
- C语言 getch()用法及代码示例
- C语言 getbkcolor()用法及代码示例
- C语言 getdate()、setdate()用法及代码示例
- C语言 getmaxx()用法及代码示例
- C语言 gety()用法及代码示例
- C语言 getmaxy()用法及代码示例
- C语言 getmaxcolor()用法及代码示例
- C语言 grapherrormsg()用法及代码示例
- C语言 fread()用法及代码示例
- C语言 feof()用法及代码示例
- C语言 imagesize()用法及代码示例
- C语言 strcspn()用法及代码示例
- C语言 setlinestyle()用法及代码示例
- C语言 showbits()用法及代码示例
- C语言 sprintf()用法及代码示例
注:本文由纯净天空筛选整理自Abhishek Sharma大神的英文原创作品 gets() function of stdio.h in C。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。