创建数据库表,下列语句中正确的是()。 A: create table stu(no integer, name text, sex text, age integer) B: table stu(no integer, name text, sex text, age integer) C: create stu(no integer, name text, sex text, age integer) D: 以上都不对
创建数据库表,下列语句中正确的是()。 A: create table stu(no integer, name text, sex text, age integer) B: table stu(no integer, name text, sex text, age integer) C: create stu(no integer, name text, sex text, age integer) D: 以上都不对
有枚举定义enum sex{m,f} stu;能够正确赋值的是()。
有枚举定义enum sex{m,f} stu;能够正确赋值的是()。
下面程序的运行结果是: 。 typedef union student{ char name[10]; long sno; char sex; float score[4]; }STU; main(){ STU a[5]; printf("%d",sizeof(a)); }
下面程序的运行结果是: 。 typedef union student{ char name[10]; long sno; char sex; float score[4]; }STU; main(){ STU a[5]; printf("%d",sizeof(a)); }
以下程序的运行结果是 。 struct date { int year; int month; int day; }; struct student{ char name[10]; char sex; struct date birthday; }stu; 结构体变量stu所占字节数为______
以下程序的运行结果是 。 struct date { int year; int month; int day; }; struct student{ char name[10]; char sex; struct date birthday; }stu; 结构体变量stu所占字节数为______
若有如下说明语句,则下面叙述中不正确的是( )。struct student{ long num; char name[20]; char sex; int age;} stu; A: struct是结构体类型关键字 B: struct student是结构体类型 C: num,name,sex,age都是结构体成员名 D: stu是结构体类型名
若有如下说明语句,则下面叙述中不正确的是( )。struct student{ long num; char name[20]; char sex; int age;} stu; A: struct是结构体类型关键字 B: struct student是结构体类型 C: num,name,sex,age都是结构体成员名 D: stu是结构体类型名
若有如下说明语句,则下面叙述中不正确的是struct student{long num;char name[20]; char sex;int age;} stu;
若有如下说明语句,则下面叙述中不正确的是struct student{long num;char name[20]; char sex;int age;} stu;
中国大学MOOC: 若有以下定义:struct STU{ char name[20]; int age; char sex;}s1;则下面输入语句不正确的是
中国大学MOOC: 若有以下定义:struct STU{ char name[20]; int age; char sex;}s1;则下面输入语句不正确的是
根据程序,请判断输出结果:#include<stdio.h>struct stu{int num;char name[5];int age;char sex;};void fun(struct stu *p){printf("%s\n",(*p).name);}main(){struct stu stud[3]={{0001,"zhang",20,'f'},{0002,"li",18,'m'},{0003,"chen",19,'f'}};fun(stud+2);}
根据程序,请判断输出结果:#include<stdio.h>struct stu{int num;char name[5];int age;char sex;};void fun(struct stu *p){printf("%s\n",(*p).name);}main(){struct stu stud[3]={{0001,"zhang",20,'f'},{0002,"li",18,'m'},{0003,"chen",19,'f'}};fun(stud+2);}
已知对学生记录的描述为: struct student { int num; char name[20],sex; struct{ int year,month,day;}birthday; }; struct student stu; 设变量stu中的“生日”是“1995年11月12日”,对“birthday”正确赋值的程序是______。
已知对学生记录的描述为: struct student { int num; char name[20],sex; struct{ int year,month,day;}birthday; }; struct student stu; 设变量stu中的“生日”是“1995年11月12日”,对“birthday”正确赋值的程序是______。
有如下结构体定义,能够正确引用结构体的是()。 struct student { long num; char name[10]; char sex; int age; float score; }stu;
有如下结构体定义,能够正确引用结构体的是()。 struct student { long num; char name[10]; char sex; int age; float score; }stu;