修改文件结构。
This commit is contained in:
13
POP/11/Optional01.c
Normal file
13
POP/11/Optional01.c
Normal file
@@ -0,0 +1,13 @@
|
||||
#include <stdio.h>
|
||||
|
||||
char *a = "HAPPYNEWYEAR";
|
||||
char b[] = "happynewyear";
|
||||
|
||||
int main() {
|
||||
int i = 8;
|
||||
printf("%c%c%s%s\n", *a, b[0], b+5, &a[5]);
|
||||
while(*(a+i)) {
|
||||
putchar(*(a+(i++)));
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user