下列关于数据库的叙述中,不准确的是______。
以下叙述中不正确的是()。
查找学生表student中姓名的第二个字为"t"的学生学号Sno和姓名sname,下面SQL语句正确的是______。
下列程序的输出结果是()。
#include
main()
{inta=3,b=2,C=1;
if(a
对下述程序的判断中,正确的是()。
#include
main()
{char*p,s[256];
p=s;
while(strcmp(s,"theend"))
{printf("Inputthestrin9:");
gets(s);
while(*p)
putchar(*p++);
}}