PROGRAMMING:Character array traversal
Analyze the following code to understand the traversal method of character array and string.
```
#include
int main(){
char s[26];
char t[100]="The People\'s Republic of China";
int i,j;
for(i=0; i<26; I + +) / / traverses the entire array assignment
s[i]='A'+i;
for(i=0; i<26; I + +) / / traverses the entire array output
printf("%c%c",s[i],s[i]+32);
printf("\n");
for(i=0; t[i]!='\ 0'; / / only traverses the string (not the entire array)
printf("%c_", t[i]);
return 0;
}
```
###Input example:
```in
```
###Output example:
```out
AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz
T_ h_ e_ _ P_ e_ o_ p_ l_ e_'_ s_ _ R_ e_ p_ u_ b_ l_ i_ c_ _ o_ f_ _ C_ h_ i_ n_ a_
```
answer:If there is no answer, please comment
```
#include
int main(){
char s[26];
char t[100]="The People\'s Republic of China";
int i,j;
for(i=0; i<26; I + +) / / traverses the entire array assignment
s[i]='A'+i;
for(i=0; i<26; I + +) / / traverses the entire array output
printf("%c%c",s[i],s[i]+32);
printf("\n");
for(i=0; t[i]!='\ 0'; / / only traverses the string (not the entire array)
printf("%c_", t[i]);
return 0;
}
```
###Input example:
```in
```
###Output example:
```out
AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz
T_ h_ e_ _ P_ e_ o_ p_ l_ e_'_ s_ _ R_ e_ p_ u_ b_ l_ i_ c_ _ o_ f_ _ C_ h_ i_ n_ a_
```
answer:If there is no answer, please comment