12课选做题。

This commit is contained in:
unlockable
2022-12-14 00:55:48 +08:00
parent f195c5e758
commit 83454e9ff1
2 changed files with 88 additions and 0 deletions

9
12/Optional02.c Normal file
View File

@@ -0,0 +1,9 @@
#include <stdio.h>
int main(int argc, char *argv[]) {
char **p;
for (p = argv; argc--; p++) {
printf("%c%s", **p, *p);
}
return 0;
}