PROGRAMMING:Analysis of secondary pointer code
```
Analysis of secondary pointer code
int main(){
static char *ps[]={"Java","C","Objective-C","C++","C#","PHP"};
char **pps;
int i;
for(i=0; i<6; i++){
pps=ps+i;
printf("%s.(%c)\n",*pps,**pps);
}
}
Execute program, output:
Java.(J)
C.(C)
Objective-C.(O)
C++.(C)
C#.(C)
PHP.(P)
```
###Input example:
```in
```
###Output example:
```out
0
```
answer:If there is no answer, please comment
Analysis of secondary pointer code
int main(){
static char *ps[]={"Java","C","Objective-C","C++","C#","PHP"};
char **pps;
int i;
for(i=0; i<6; i++){
pps=ps+i;
printf("%s.(%c)\n",*pps,**pps);
}
}
Execute program, output:
Java.(J)
C.(C)
Objective-C.(O)
C++.(C)
C#.(C)
PHP.(P)
```
###Input example:
```in
```
###Output example:
```out
0
```
answer:If there is no answer, please comment