Files
BasicsOfComputerSoftwareEng…/10/test.c
2022-11-25 23:41:25 +08:00

17 lines
311 B
C

#include <stdio.h>
int main() {
char c[10];
static char b[10];
int i = 0;
scanf("%s", c);
scanf("%s", b);
for (i = 0; i < 10; i++) {
printf("%c", c[i]);
}
printf("\n--------\n");
printf("%s\n", b);
printf("%s\n", c);
printf("%c%c\n", 23, 49);
return 0;
}