1
#include<stdio.h>
2
#include<string.h>
3
4
main(int argc, char **argv)
5
{
6
char *string = "This is a secret string\n";
7
8
printf(argv[1]);
9
}