编辑代码

#include <stdio.h>
void main () {
    char name[10] = "老王";
    short age = 23;
    float score = 78.0f;
    char getder = 'M';
    char hobby[20] = "篮球,足球";
	printf("姓名\t年龄\t成绩\t性别\t爱好\n%s\t%d\t%f\t%c\t%s",name,age,score,getder,hobby);

}