c语言之学生信息管理系统(VS)实现
(2018-01-23 12:43:21)
标签:
c语言vs2017学生信息管理系统 |
分类: CProgram-Language |
内容同Dev C++的内容一样,只是相比上一讲针对VS对于C中的修改做了改动。使其可以正常运行。主要修改的函数如下:
scanf--------------scanf_s
strcpy-------------strcpy_s
gets---------------gets_s
fopen-------------fopen_s
fscanf-------------fscanf_s
具体区别与使用将在下一篇博文中介绍。
#include
#include
#include
#include
#define M 50
typedef struct
{
}students;
void
return_menue();
void
print_menue();
int
menue_select();
int enter(students
t[]);
void list(students t[], int
n);
void search_name(students t[], int
n);
void search_num(students t[], int
n);
void change_num(students t[], int
n);
int del(students t[], int
n);
int add(students t[], int
n);
int load(students
t[]);

加载中…