《零基础学C语言》十九章源代码

qq_41774256 15 0 RAR 2019-03-05 00:03:29

#include /*使用printf要包含的头文件*/ #include struct person /*结构体变量定义*/ { char name[20]; /*字符串姓名*/ char email[50]; /*字符串email*/ }; void print(void) /*print函数*/ { struct person ls={"Li Si", "ls@163.com"}; /*声明结构体变量ls*/ printf("name:%s\n",ls

用户评论
请输入评论内容
评分:
暂无评论