I wrote a TCP socket client program which allows user to input the IP, port, and message as arguments.
It is like:
./a.out 127.0.0.1 555 test message
My question is, how to combine "test" (argv[3]) and "message" (argv[4]) and more into a char *message?