• 2022-06-19
    若已经定义struct stu { int a, b; } student ; 则下列输入语句中正确的是 。
    A: scanf("%d",&a);
    B: scanf("%d",&student);
    C: scanf("%d",&stu.a);
    D: scanf("%d",&student.a);