• 2021-04-14
    以下程序段,在空白处填写()能使程序正确运行并输出结果。
    #include
    struct student
    {long num;
    char name[10];
    char sex;
    float score;
    };
    main()
    {struct student stu={10101,"lili",'m',89.5},*pt;
    printf("%.2f",pt->score);
    }