下列自定义数据类型错误的语句是( )。
A: CREATE TYPE phone FROM char(11)
B: sp_addtype phone,'char(11)'
C: EXEC sp_addtype phone,'char(11)'
D: EXEC sp_addtype number, int
A: CREATE TYPE phone FROM char(11)
B: sp_addtype phone,'char(11)'
C: EXEC sp_addtype phone,'char(11)'
D: EXEC sp_addtype number, int
B
举一反三
- 创建用户自定义数据类型,使用哪个系统定义的存储过程 A: sp_addtype B: sp_type C: type D: addtype
- 下列语句,错误的是: A: char s[]=”China”; B: char s[20]; s=”China”; C: char *sp=”China”; D: char *sp; sp=”China”;
- char s[20] = “abcd”; char *sp = s; sp++; puts(strcat(sp, “ABCD”));
- 下列语句的输出结果是______。 char s[20]="aaaa",*sp=s; puts(strcat(sp,"AAAAA"));
- char s[80], *sp = HELLO!”; sp = strcpy(s, sp); s[0] = ‘h’; puts(sp);
内容
- 0
若有以下说明和语句,其输出结果是 ______。 char *sp="\"D:\\ANI.WPS\"" ; printf("%s",sp);
- 1
若有以下说明和语句,则输出的结果是_________. char sp[]="\x69\082\n" printf ("%d,%d",strlen(sp),sizeof(sp));
- 2
char s[80],*sp="HELLO!";sp=strcpy(s,sp);s[0]='h';puts(sp);运行结果:________
- 3
以下程序的运行结果是______。#include<stdio.h>#include<string.h>int main( ){char s[20] = "abcd" ;char *sp = s ;sp++ ;puts( strcat( sp , "ABCD" ) ) ;return 0 ;}
- 4
下列程序运行时的输出结果是 。#include[stdio.h]#include[string.h]int main(){ char s[80],*sp="hello!"; sp=strcpy(s,sp); s[0]='H'; puts(sp); return 0;}