progs/C4.c
changeset 220 74772c30e0f4
parent 115 c4008b31df8e
child 233 5a5729358afc
equal deleted inserted replaced
219:c2ac0cb1d00b 220:74772c30e0f4
     3 
     3 
     4 // a program that "just" prints the argument
     4 // a program that "just" prints the argument
     5 // on the command line
     5 // on the command line
     6 
     6 
     7 
     7 
     8 main(int argc, char **argv)
     8 int main(int argc, char **argv)
     9 {
     9 {
    10         char *string = "This is a secret string\n";
    10    char *string = "This is a secret string\n";
    11 
    11 
    12         printf(argv[1]);
    12    printf(argv[1]);
    13 }
    13 }