【简答题】下面程序的功能是用递归算法将一个整数按逆序存放到一个字符数组中,例如 123 存放为“ 321 ”。 #include void Convert(char *a, int n) { int i; if(i=n/10) Convert( (1) ,i); *a= (2) ; } void main() { int number; char str[10]=””; scanf(“%d”,&number...
【单选题】#include #include int main() { char str1[30], str2[] = “your book”; scanf(“%s”, str1); strcpy(str1, str2); printf(“\n %s\n %d\n”, str1, strlen(str2)); return 0; } 输入: you are a student
【多选题】与他人在正式场合交谈时要严肃认真,还要注意语言的
【单选题】下列定义数组的语句中正确的是______。
A.
#define size 10 char str1[size],str2[size+2];
D.
int n=5; int a[n][n+2];
【简答题】以下程序求最小字符串。 int main() { int i; char str[10], temp[10]; gets(temp); for (i=0; i<4; i++) { gets(str); if (strcmp(temp,str) [填空(1)] ) [填空(2)] ; } printf("%s\n",temp); return 0; }A.>0B. strcpy(temp,str)
【单选题】与他人在正式场合交谈时要严肃认真 ,还要注意语言的
【简答题】若有以下程序: include <iostream> using namespace std; int main() { char str[10]; cin>>str; cout<< str<<end1; return 0; } 当输入为: This is a program! 那么执行程序后的输出结果是【 】。
【单选题】设char str[100];int I=5;,则引用数组元素的错误形式的是( )
【单选题】int a=10; char str[10]="abcd"; int *p1=&a; char *p2=str; cout< cout< cout< cout< 执行上述程序段,输出结果是 。
A.
变量a的地址(一个十六进制数) 10 abcd a
C.
变量a的地址(一个十六进制数) 10 数组str的首地址 a
D.
变量a的地址(一个十六进制数) 10 a a