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;
}
|