1 Star 6 Fork 1

Mikoto/Linux下用C语言实现银行小系统

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
struct.h 256 Bytes
一键复制 编辑 原始数据 按行查看 历史
Mikoto 提交于 2020-12-11 11:03 . bank_1.0 code
#ifndef STRUCT_H
#define STRUCT_H
#define key (123456)
typedef struct Account
{
long user;
char name[20];
char id[20];
char pwd[20];
double money;
int lock;
}Account;
typedef struct Msg{
long type;
int flag;
Account act;
}Msg;
#endif//STRUCT_H
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/mikoto-10032/bank.git
git@gitee.com:mikoto-10032/bank.git
mikoto-10032
bank
Linux下用C语言实现银行小系统
master

搜索帮助