给需要答辩的友友小小参考
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#define N 50
#define LENTH 20
typedef struct book{
int numBook ; //图书检索号
char name[LENTH],author[LENTH],releaseOrg[LENTH],ISBNnumber[17]; //书名,作者,出版社,ISBN号
float price;
st...
这个是小菜鸟我大一时候,用c写的的日记本系统.
基础的知识都基本涉及到,如文件操作和目录操作.
运行都没问题,也没什么太严重的bug.想请路过的大神对鄙人的风格或其他不足方面给些建议,在此谢过.
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include <sys/types.h>
#include <dirent.h>
#include <sys/stat.h>
#define MAXSIZE 1024
#define LENTH 50
typedef s...