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?

link|improve this question

80% accept rate
What is "test" ? – Kurtis Nusbaum Oct 13 '11 at 19:21
just a random text for testing, it could be any words like: finally done – Tim Oct 13 '11 at 19:22
so if test is just a string, what does test(argv[3]) mean? – Kurtis Nusbaum Oct 13 '11 at 19:23
that was a mistake, it corrected now. – Tim Oct 13 '11 at 19:26
feedback

3 Answers

What you want to do is actually this:

/a.out 127.0.0.1 555 "test message"

By putting quotes around the message, argv[3] will contain the full message. Then you don't have to bother concatenating the arguments together.

link|improve this answer
feedback

You'd have to get the length of your argv strings that you want to combine. Create a char array of that size, and then copy the strings over, using strcpy (preferably the secure version).

link|improve this answer
2  
if you calculated the length you don't need the secure version... – Karoly Horvath Oct 13 '11 at 19:27
Don't forget to add room in the output char array for spaces. – CajunLuke Oct 13 '11 at 19:27
.. and to write spaces between the strings. – Karoly Horvath Oct 13 '11 at 19:30
feedback

You can use strlen to get the lengths of the strings, then allocate a buffer of the appropriate size and use sprintf or strcpy to fill it with your formatted data.

But as Kurtis says, if all you want to do is pass a string containing spaces to your program, then that’s the concern of the shell, not your program. On Unix you should use single quotes ('), and on Windows you can use double quotes (").

link|improve this answer
On windows you can also use the GetCommandLine API that returns you the whole unparsed command line string. – ruslik Oct 13 '11 at 19:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.