基本介绍
输入流与输出流
重点在C程序(内存)的数据移动方向
对于C程序(内存)
输入数据:输入流
输出数据:输出流
输入
和输出
C标准库
标准输入输出库
标准文件
getchar()&putchar()函数
代码
#include<stdio.h>
#include<stdlib.h>
//文件--getchar()和putchar()函数
int main()
{char c='0';do{printf("请输入一个字符:");c=getchar();getchar();if(c!='\n')//过滤enter回车键{printf("输入的字符为:");putchar(c);}printf("\n");}while(c!='y'&&c!='n');printf("输入正确\n");system("pause");return 0;
}
gets()&puts()函数
gets():输入流
puts():输出流
写入stdout屏幕
代码
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
//文件--gets()&puts()函数
int main()
{char*s;s=(char*)malloc(100*sizeof(char));//动态分配内存do{printf("请输入字符串:\n");gets(s);//读取一行字符串printf("输入的字符串为:\n");puts(s);//打印一行字符串}while(strcmp(s,"0")); //输入为0时退出循环system("pause");return 0;
}