c代码实现结构体存储信息到文件操作

#include"stdafx.h"
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
// #include <opencv2/opencv.hpp>

#define MAXTITL 40
#define MAXAUTL 40
#define MAXBKS 10

char *s_gets(char*st, int n);
// book模板
struct book {
	char title[MAXTITL];
	char author[MAXAUTL];
	float value;
};

int main(int, char**)
{
	struct book library[MAXBKS];
	int count = 0;
	int index, filecount;
	FILE * pbooks;
	int size = sizeof(struct book);
	// 获取文件读写权限
	if ((pbooks = fopen("book.dat", "a + b")) == NULL) {
		fputs("cann not open book.dat file\n", stderr);
		exit(1);
	}

	// 定位到文件开始
	rewind(pbooks);
	while (count < MAXBKS && fread(&library[count], size, 1, pbooks) == 1) {
		if (count == 0)
			puts("current contents of book.dat:");
		printf("%s by %s:$%.2f\n", library[count].title, library[count].author, library[count].value);
		count++;
	}
	filecount = count;
	if (count == MAXBKS) {
		fputs("the book.dat file is full.", stderr);
		exit(2);
	}

	puts("Please add new book titles.");
	puts("press enter at the start of a linne to stop.");
	while (count < MAXBKS && s_gets(library[count].title, MAXTITL) 
		!= NULL && library[count].title[0] != '\0') {
		puts("now enter the author.");
		s_gets(library[count].author, MAXAUTL);
		puts("Now enter the value");
		scanf("%f", &library[count++].value);
		// 清理输入的末尾换行符
		while (getchar() != '\n')
			continue;
		if (count < MAXBKS)
			puts("Enter thr next title");
	}

	if (count > 0) {
		puts("Here is the list of your books:");
		for (index = 0; index < count; index++)
			printf("%s by %s:$%.2f\n", library[index].title, library[index].author, library[index].value);
		fwrite(&library[filecount], size, count - filecount, pbooks);
	}
	else {
		puts("No books? Too bad.\n");
	}
	fclose(pbooks);

	return 0;
}
// 用以消除字符输入回车带入的换行符
char *s_gets(char*st, int n) {
	char *ret_val;
	char *find;

	ret_val = fgets(st, n, stdin);
	// 查找换行符
	if (ret_val) {
		find = strchr(st, '\n');
		// 如果地址不是NULL
		if (find)
			// 此处放置一个空字符
			*find = '\0';
		else
			while (getchar() != '\n')
				// 清理输入行
				continue;
	}
	return ret_val;
}

  • 4
    点赞
  • 8
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值