repositories
/
TD_C.git
/ blame
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
blame
(incremental) |
history
|
HEAD
TP_13 exo1: Also use the brand new builsystem that support OS X
[TD_C.git]
/
TP_11
/
exo3
/
exo3.c
Commit
Line
Data
d5f8f6ea
JB
1
#include <stdio.h>
2
f5859300
3
int main(int argc, char* argv[]) {
d5f8f6ea
JB
4
printf("argc=%d\n", argc);
5
for (int i = 0; i < argc; i++) {
6
printf("argv[%d]=\"%s\"\n", i, argv[i]);
7
}
8
9
return 0;
10
}