-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsample.tar
More file actions
26 lines (21 loc) · 10 KB
/
sample.tar
File metadata and controls
26 lines (21 loc) · 10 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
greet.c 0000644 0001750 0001750 00000000252 13060557663 013420 0 ustar papierkorb papierkorb #include <stdio.h>
int main(int argc, char **argv) {
if (argc > 1) {
printf("Hello, %s!\n", argv[1]);
} else {
printf("Hello, World!\n");
}
return 0;
}