Possible Duplicate:
C String Concatenation
How do I concatenate multiple char strings in C ?
Example:
const char *bytes = "tablr=Hello%20World";
const char *bytes2 = "tablr=Hello%20World";
const char *bytes3 = "tablr=Hello%20World";
thanks
How do I concatenate multiple char strings in C ? Example:
thanks
| |||||
feedback
|
This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.
|
String literals can be concatenated simply by being adjacent:
The above concatenation is done by the compiler and doesn't incur runtime overhead. | |||||||
feedback
|
|
With
Using an efficient loop:
| |||||||||||||
feedback
|
|
Here's a suggestion, that avoids the Painter's problem:
This avoids the painter's problem and should be more efficient (although sometimes not) because memcpy may copy byte-by-byte or word-by-word, depending on the implementation, which is faster. If you can see a pattern here, this can easilly be transformed into a function that concatenates an arbitrary number of strings, if they are provided in an char const*[] | |||
|
feedback
|
|
Use the | |||||||
feedback
|
|
In general, you use the But you can concatenate string literals merely by writing them one after another. Example:
p points to "Hello, World!". In your case it would be like this:
| |||
|
feedback
|
|
If your compiler supports it use strcat_s or _tcscat_s. They will check the buffer length you're writing to. | |||
|
feedback
|
|
I suggest to use memcpy function. It is quite efficient:
| |||||||||||||
feedback
|