修改文件结构。
This commit is contained in:
9
POP/12/Optional02.c
Normal file
9
POP/12/Optional02.c
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user