PROGRAMMING:Character pointer
```
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
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