[主观题]

strcpy(str,"hello");

参考答案与解析:

相关试题

char str[ ]= "Hello"; char *p=str; int n

[主观题]char str[ ]= "Hello";char *p=str;int n=10;sizeof(str)=( )sizeof(p)=( )sizeof(n)=( )void func(char str[100]){ }sizeof(str)=( )

  • 查看答案
  • char str[ ]= "Hello"; char *p=str; int n

    [主观题]char str[ ]= "Hello";char *p=str;int n=10;sizeof(str)=( )sizeof(p)=( )sizeof(n)=( )void func(char str[100]){ }sizeof(str)=( )

  • 查看答案
  • 定义字符指针char *str="hello",已知sizeof(str)=4,

    [主观题]定义字符指针char *str="hello",已知sizeof(str)=4,则strlen(str)=______。

  • 查看答案
  • 设有如下的程序段:char str[]="Hello";char *ptr;pt

    [单选题]设有如下的程序段: char str[]="Hello"; char *ptr; ptr=str; 执行完上面的程序段后,*(ptr+5)的值为( )。A.'o'B.'/0'C.不确定的值D.'o'的地址

  • 查看答案
  • 顺序执行下列程序语句后,则b的值是()。String a="Hello";Str

    [单选题]顺序执行下列程序语句后,则b的值是( )。 String a="Hello"; String b=a.substring(0,2);A.HelloB.helloC.HeD.null

  • 查看答案
  • 假设有以下代码:String s="hello";String t="hello

    [单选题]假设有以下代码: String s="hello"; String t="hello"; char c[ ]={'h','e','l','l','o'}; 下列选项中,返回false的语句是______。A.s.equals(t);B.t.equals(c);C.s==t;D.t.equals(new String("hello"));

  • 查看答案
  • 设A$="Hello",下列语句正确的是()。

    [单选题]设A$="Hello",下列语句正确的是( )。A.Labe11.Hight=Labe11.Hight+A$B.Labe11.Caption=Labe11.Caption+A$C.Labe11.Enabled=Laabe11.Enabled+A$D.Labe11.Visible=Labe11.Visible+AS

  • 查看答案
  • 函数Left("Hello",2)的值为()

    [单选题]函数Left("Hello",2)的值为()A . HeB . elC . loD . True

  • 查看答案
  • String s = "Hello";s = s £« " world!";这两

    [试题]String s = "Hello";s = s + " world!";这两行代码执行后,原始的String 对象中的内容到底变了没有?

  • 查看答案
  • String s = "Hello";s = s £« " world!";这两

    [试题]String s = "Hello";s = s + " world!";这两行代码执行后,原始的String 对象中的内容到底变了没有?

  • 查看答案
  • strcpy(str,"hello");