从键盘输入某个职工的工号、姓名和工资保存至结构体类型变量并输出。
#include< stdio.h>
typedef struct employee
{
int number;
char name[20];
float salary;
}________;
void main()
{
EMP em;
scanf("%d%s%f", &em. number,________,&em.salary);
printf("Number:%d\nName:%s\nSalary:%.1fn",________);
}