题目内容

要使字符串变量str具有初值"Lucky",不正确的定义语句是 。

A. char str[]={'L','u','c','k','y'};
B. char str[5]={ 'L','u','c','k','y'};
C. char str [] ="Lucky";
D. char str [5] ="Lucky";

查看答案
更多问题

下面程序的输出结果是 。 #include< iostream> using namespace std;#include "string.h"void main(){char a[] = "welcome", b[] = "well ";strcpy(a, b);cout << a << endl;}

A. wellome
B. well om
C. well
D. well we

在C++语言中,一维数组的定义方式为:<类型说明符> 数组名 ;

A. [整型常量表达式]
B. [整型表达式]
C. [常量]
D. [整型常量] 或[整型表达式]

下列是为字符数组赋字符串的语句组,其中错误的是 。

A. char s[l0]; s="program";
B. char s[]=" program";
C. char s[l0]="Hello!";
D. char s[l0];strcpy(s,"hello !");

若己知char str[20]; 有语句cin>>str; 当输入为This is a C++ program时,str所得结果是 。

A. This is a C++ program
B. This
C. This is
D. This is a C

答案查题题库