diff options
Diffstat (limited to 'test.c')
-rw-r--r-- | test.c | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -0,0 +1,8 @@ +#include <string.h> +#include <stdio.h> + +int main(int argc,char* argv[argc+1]){ + puts(argv[1]); + printf("%d\n",strlen(argv[1])); + return 1; +} |