source:
experiments/Return_test/return_test.c
@
16
Revision 16, 130 bytes checked in by mmatloka, 14 years ago (diff) |
---|
Line | |
---|---|
1 | #include<stdlib.h> |
2 | #include<stdio.h> |
3 | |
4 | int main(int argc,char *argv[]) |
5 | { |
6 | if(argc<2) |
7 | return -1; |
8 | else |
9 | return atoi(argv[1]); |
10 | } |
Note: See TracBrowser
for help on using the repository browser.