【单选题】已知:char s1[10],s2[]={"hello"};则在程序中能将字符串"hello"赋给数组s1的正确语句是
【简答题】#include #include void main() { char a[30]="Hello "; char b[10]="Students"; char c[10]="Teachers"; strcat(a,c); printf("%s,%s.\n",a,b); } 输出:
【单选题】#include #include void main() { char a[30]="Hello "; char b[10]="Students"; char c[10]="Teachers"; strcat(a,c); printf("%s,%s.\n",a,b); }
A.
Hello Teachers,Students.
B.
Hello, Teachers,Students.
【单选题】由普通套筒滚子链传动的特点可知,它不能作高速传动的原因是 ( ) 。
【判断题】定义数组char s[10]={"Hello"},该定义可以简化写作char s[10]="Hello"。
【单选题】#include #include void main() { char a[30]="Hello "; char b[10]="Students"; char c[10]="Teachers"; strcat(a,c); printf("%s,%s.\n",a,b); }
A.
Hello Teachers,Students.
B.
Hello, Teachers,Students.
【判断题】旅客因工作原因要求中途退团,地接导游要配合领队做说明,劝其继续跟团游览
【单选题】设有程序段: char a[10][10]={"hello","world","!"} for(int i=0;i<3;i++) _____ 为了输出"hello world !",程序空白处需填入_____。
【判断题】定义数组char s[10]={"Hello"},该定义可以简化写作char s[10]={Hello}。