C语言文件处理

2011年,第一次考对文件的操作,之后2016年也考了对文件的操作

题目:读入一个文件,对读入的字符串按字符大小排序后,输出到另外一个文件

/*
读入一个文件,对读入的字符串按字符大小排序后,输出到另外一个文件
*/
#include<stdio.h>
#include<stdlib.h>

int cmp(const void *a, const void *b){
	return *(char *)a - *(char *)b;
}

int main()
{
	FILE *in, *out;
	char inFileName[20] = "in.txt";
	char outFileName[20] = "out.txt";
	if ((in = fopen(inFileName, "r")) == NULL){
		printf("cannot open %s\n", inFileName);
		exit(0);
	}
	if ((out = fopen(outFileName, "w+")) != NULL){
//		printf("cannot open %s\n", outFileName);
//		exit(0);
	}
	char str[80];
	int length=0;
	while (!feof(in)){
		fscanf(in, "%s", str);		
		fprintf(out, "%s", str);
		
	}
	while (str[length++] != '\0');
	length = length - 1;
	qsort(str, length, sizeof(str[0]), cmp);
	printf("%s", str);fclose(in);fclose(out);
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值