【单选题】
假定s被定义为指针类型char *的变量,初始指向的字符串为Hello world!,若要使变量p指向s所指向的字符串,则p应定义为?
【单选题】
在C语言中,分别存储 “S”和‘s’,各需要占用( )字节。
【单选题】
已知波源的振动周期为为4.00×10-2s,波的传播速度为300m/s,波沿x轴正方向传播,则位于x1=10.0m和x2=16.0m的两质点振动相位差为()
【简答题】
#include stdio.hint main(){char a[]=I love China!,b[20],*p1,*p2;p1=a;p2=b; for(;*p1!=\0p1++,p2++)*p2=*p1; *p2=\0// printf(string a is:%s\n printf(string b is:%s\n return 0;}以上程序运行结果为string b is:[填空1]。
【多选题】
设前提: (púq) ? (rùs), (sút) ?u. 则下面哪些不是其有效的结论:
【单选题】
2. Where’s Lily? We are all here _______ her
【单选题】
2. The notice can be written on any material as long as it’s _______.
【单选题】
设有如下函数定义
int f(char *s) {
char *p=s;
while(*p!=’\0’) p++;
return(p-s);
}
在主函数中用coutf(“good”)调用上述函数, 则输出结果为( )
【单选题】
设有如下函数定义
int f(char *s) {
char *p=s;
while(*p!=’\0’) p++;
return(p-s);
}
在主函数中用coutf(“good”)调用上述函数, 则输出结果为( )。