gets()&puts()函数

简介: gets()&puts()函数。

gets()&puts()函数
char gets(char s) 函数从 stdin 读取一行到 s 所指向的缓冲区,直到一个终止符或 EOF。
int puts(const char *s) 函数把字符串 s 和一个尾随的换行符写入到 stdout。
实例

include

int main( )
{
char str[100];

printf( "Enter a value :");
gets( str );

printf( "\nYou entered: ");
puts( str );
return 0;
}
当上面的代码被编译和执行时,它会等待您输入一些文本,当您输入一个文本并按下回车键时,程序会继续并读取一整行直到该行结束,显示如下:
$./a.out
Enter a value :runoob
You entered: runoob

目录
相关文章
|
6月前
assert()函数用法总结
assert()函数用法总结
|
5月前
putchar()函数
【6月更文挑战第24天】putchar()函数。
113 2
|
6月前
|
编译器 C语言 C++
【C语言】分支和循环 ---- if、switch、while、for、goto语句, 理解getchar和putchar函数
【C语言】分支和循环 ---- if、switch、while、for、goto语句, 理解getchar和putchar函数
44 0
strstr(str1,str2) 函数与sscanf()函数功能详解
strstr(str1,str2) 函数与sscanf()函数功能详解
101 0
|
人工智能
scanf函数与getchar函数区别
scanf函数与getchar函数区别
144 0
strcmp函数详解
如果字符串不一样,并且字符串1>字符串2,则返回值>0.相反返回值小于零。
358 0
|
C语言
C/C++assert()函数用法
C/C++assert()函数用法
127 0
|
C语言 C++
C++中的 c_str() 函数
功能:c_str() 函数可以将 const string* 类型 转化为 cons char* 类型 头文件:#include<cstring> c_str()就是将C++的string转化为C的字符串数组,c_str()生成一个const char *指针,指向字符串的首地址 因为在c语言中没有string类型,必须通过string类对象的成员函数 c_str() 把 string 转换成c中的字符串样式
C++中的 c_str() 函数
atoi函数
atoi函数
140 0
|
C++ C语言
C/C++ assert()函数用法总结
转自:https://www.cnblogs.com/lvchaoshun/p/7816288.html   assert宏的原型定义在中,其作用是如果它的条件返回错误,则终止程序执行。
1081 0