• 2022-06-12
    以下程序的运行结果是( ) #include struct student { int num; char name[20]; float score; }stu1={1002,"liling",98.5}; void main( ) { struct student *p; p= printf("%s\n",p-name); }
    A: 1002
    B: liling
    C: 98.5
    D: 不确定的值