首页
新闻
小组
威客
人才
下载
博客
代码贴
在线编程
论坛
注册
|
登录
代码贴
→
公子小白13号的代码贴
→
全部
[C语言]结构体赋值
#include <stdio.h>
typedef struct
{
int num;
char name[10];
int math;
int word;
}student;
student Input(student s)
{
scanf("%d %s %d %d",&s.num,s.name,&s.math,&s.word);
return s;
......................
阅读全部
| 2020年9月7日 12:53
1
公子小白13号
全部(1)
C语言(1)