設有如下表達式: CHECK(score > =0 AND score < =100) 關于該表達式,下列敘述中錯誤的是 ______。
下列程序的運行結果為( )。
#include
main()
{ struct date
{int year ,month,day;
}today;
printf("%dn" ,sizeof(struct date));
}
有以下程序:輸出的結果是( )。
#include<
struct stu
{ int num;
char name[10] :
int age;}
void fun(struct stu*p)
{printf("%sn" ,(*p).name);}
tllain()
{
struct stu students[3]={{9801 ,"Zhang".20} ,
{9802 ,"Wang",19},{9803 ,"Zhao" ,1 8}}
fun(students+2);
}
面向對象的設計方法與傳統的面向過程的方法有本質不同, 它的基本原理是 ( )。
給定如下 SQL,語句
CREATE VIEW test.V_test
AS
SELECT * FROM test.students WHERE age < 19 :
該語句的功能是 ______。