修改文件结构。
This commit is contained in:
17
POP/10/test.c
Normal file
17
POP/10/test.c
Normal file
@@ -0,0 +1,17 @@
|
||||
#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;
|
||||
}
|
||||
Reference in New Issue
Block a user