面试题答案
一键面试#include <stdio.h>
struct student {
int id;
char name[20];
float score;
};
void printStudent(struct student *stu) {
printf("ID: %d\n", stu->id);
printf("Name: %s\n", stu->name);
printf("Score: %.2f\n", stu->score);
}