在 MySQL的 SQL语句中,要实现类似分页功能的效果,可使用 ______。
下列不能使用 ALTER命令进行修改的数据库对象是 ______。
下列选项中,不能用于备份数据库的是 ______。
下列程序的输出结果是( )。
int fl(int x ,int y){return x>y?x :y;)
int f2(int x ,int y){return x>y?y :x;}
main()
{ int a=4 ,b=3,c=5,d=2,e,f ,g;
e=f2(f1(a ,b) ,f1(c ,d));
f=f1(f2(a ,b) ,f2(c ,d));
g=a+b+c+d-e-f;
printf("%d ,%d,%dn" ,e,f ,g);}
有以下程序:输出的结果是( )。
#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);
}