C语言 文件的基本介绍

Posted DQ_CODING

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C语言 文件的基本介绍相关的知识,希望对你有一定的参考价值。

基本介绍

输入流与输出流

重点在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;
}

scanf()&printf()函数

以上是关于C语言 文件的基本介绍的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp Robolution基本代码片段

C语言实现三子棋步骤及代码(内附随机种子介绍)

Prometheus配置文件

介绍下Java程序的结构

Java的基本介绍

SQL Select 语句的用法