语句const char *ptr;中,ptr应该是(
举一反三
- 有定义:char s1[20] = "hello", s2[20] = "China"; const char *ptr = s1; 则以下四种操作中,错误的是()。 A: strcpy(s2, ptr); B: ptr = s2; C: ptr = ptr+10; D: *ptr = *s2;
- 中国大学MOOC: 有定义:char s1[20] = hello, s2[20] = China; const char *ptr = s1; 则以下四种操作中,错误的是()。
- 设有定义语句"int (*ptr)[10];",其中的ptr是
- 下列说明中constcharptr其中ptr应该是
- 设有如下的程序段: char str[ ]="hello"; char *ptr; ptr=str; 执行上面的程序段后,*(ptr+5)的值为( )。