-->
当前位置:首页 > 题库

PROGRAMMING:Character pointer

Luz5年前 (2021-05-10)题库406
```
Analyze the following code to understand the application of character pointer
#include
int main(){
char *p;
p="ABCDE";
for( ;* p!='\ 0'; p++) printf("%s\n",p);
return 0;
}
```
###Input example:
```in
```
###Output example:
```out
ABCDE
BCDE
CDE
DE
E
```







answer:If there is no answer, please comment