mirror of
https://github.com/epasveer/seer.git
synced 2026-08-29 16:40:42 +08:00
15 lines
201 B
C
15 lines
201 B
C
#include <stdio.h>
|
|
|
|
int main(int argc, char *argv[0]) {
|
|
|
|
for (int i = 1; i < argc; ++i) {
|
|
if (i != 1) printf(" ");
|
|
printf("%s", argv[i]);
|
|
}
|
|
|
|
printf("\n");
|
|
|
|
return 0;
|
|
}
|
|
|