ll
llo
he
hello
第1题:
若有以下的定义, int a[ ]={1,2,3,4,5,6,7,8,9,10},*p=a;则值为3的表达式是 ______。
A.p+=2,*(p++)
B.p+=2,*++p
C.p+=3,*p++
D.p+=2,++*p
第2题:
若有int x[]={1,2,3,4,5,6,7,8,9,10},*p=x;则值为4的表达式是 ______。
A.p+=2,*(p++)
B.p+=2,*++p
C.p+=3,*p++
D.p+=2,++*p
第3题:
python中,’HELLO’*5的值是()
第4题:
python中,p=‘hello world!’,则p[2:5]的值是()
第5题:
变量l=‘hello world!’,则l[2:5]的值是()
第6题:
表达式’Hello world.I like Python.’.rfind(’python’)的值为()。
第7题:
python中,’hello.count(’l’)的返回值是()
第8题:
python中,’hellO’.lower()的返回值是
第9题:
HELLOHELLOHELLOHELLOHELLO
HELLO
None
第10题:
对
错
第11题:
ll
llo
he
hello
第12题:
'\0'
'o'
'o'的地址
不确定的值
第13题:
A.Python2
B.N.x
C.sum
D.Hello_World
第14题:
假定s被定义为指针类型char *的变量,初始指向的字符串为"Hello world!",若要使变量p指向s所指向的字符串,则p应定义为()。
Achar *p=s;
Bchar *p=&s;
Cchar *p;p=*s;
Dchar *p; p=&s;
第15题:
字节串b’hello world’和b’hello world.’的MD5值相差很小。
第16题:
已知p=5,i=2;则p=pi语句执行中关于p的值说明正确的是()。
第17题:
python中,“hello”[:-1:]的值是()
第18题:
python中,type(‘hello’)的返回值是()
第19题:
’python’-"python"()的值是()
第20题:
char *p=s;
char *p=&s;
char *p;p=*s;
char *p; p=&s;
第21题:
1
2
3
4
第22题:
olleh
hello
hell
o
第23题: