单项选择题 以下关于WCDMA系统中的切换分类不正确的是()
问答题 下列程序调用swap函数交换a和b的值,并输出交换后的a和b的值。程序的输出结果是:After swap 5, 3。 void swap( int *p, int *q ) { int t; t=*p; *p=*q; *q=t; } void main( ) { int a=3, b=5; swap(______________________) ; printf("After swap %d, %d", a, b); }
单项选择题 如果要删除Information表中NO字段为‘0001’的记录,则可以使用命令( )。 A. DELETE from information where NO=‘0001’ B. UPdate TABLE information where NO=‘0001’ C. DROP TABLE information where NO=‘0001’ D. ALTER TABLE information where NO=‘0001’