判断题
错误(↓↓↓ 点击‘点击查看答案’看答案解析 ↓↓↓)
问答题
一个文件路径C:\English\book\101.txt,其中的book是一个 。 A、图...
单项选择题一个文件路径C:\English\book\101.txt,其中的book是一个 。 A、图像文件 B、文件 C、文件夹 D、文本文件
已知:typedef struct date{ int year; int mon...
单项选择题已知:typedef struct date{ int year; int month; int day;}DATE;typedef struct student{ long studentID; char studentName[10]; char studentSex; DATE birthday; int score[4]; }STUDENT;STUDENT stu1; STUDENT *pt = &stu1; 则下列访问结构体变量的方法中,哪个是错误的。 A、stu1. birthday. year = 1999; B、(*pt). birthday. year = 1999; C、pt -> birthday -> year = 1999; D、pt -> birthday. year = 1999;