test

1
2
3
4
5
6
7
8
9
10
jyf@i7:/devel/tmp/c$ ./test_point_point "one" "two" "three"
the secondary is Y����
jyf@i7:/devel/tmp/c$ cat test_point_point.c 
#include <stdio.h>

int main(int argc, char** argv){
    char x[] = "wtf";
    printf("the secondary is %s\n", argv+1);
    return 0;
}