Code:
void show1(char *s) {
int i;
for (i = 0; i < strlen(s); i++) printf("%c", s[i]);
printf("\n");
}
void show2(char *s) {
int i;
for (i = 0; i <= strlen(s) - 1; i++) printf("%c", s[i]);
printf("\n");
}
void show1(char *s) {
int i;
for (i = 0; i < strlen(s); i++) printf("%c", s[i]);
printf("\n");
}
void show2(char *s) {
int i;
for (i = 0; i <= strlen(s) - 1; i++) printf("%c", s[i]);
printf("\n");
}
Comment