问题
i was wondering if there was a way to add a value to a string, not like 1 + 1 = 2 but like 1 + 1 = 11.
回答1:
I think you need string concatenation:
#include <stdio.h>
#include <string.h>
int main() {
char str1[50] = "Hello ";
char str2[] = "World";
strcat(str1, str2);
printf("str1: %s\n", str1);
return 0;
}
from: http://irc.essex.ac.uk/www.iota-six.co.uk/c/g6_strcat_strncat.asp
回答2:
To concatenate more than two strings, you can use sprintf, e.g.
char buffer[101];
sprintf(buffer, "%s%s%s%s", "this", " is", " my", " story");
回答3:
Try taking a look at the strcat API. With sufficient buffer space, you can add one string onto the end of another one.
char[50] buffer;
strcpy(buffer, "1");
printf("%s\n", buffer); // prints 1
strcat(buffer, "1");
printf("%s\n", buffer); // prints 11
Reference page for strcat
- http://www.cplusplus.com/reference/clibrary/cstring/strcat/
回答4:
'strcat' is the answer, but thought there should be an example that touches on the buffer-size issue explicitly.
#include <string.h>
#include <stdlib.h>
/* str1 and str2 are the strings that you want to concatenate... */
/* result buffer needs to be one larger than the combined length */
/* of the two strings */
char *result = malloc((strlen(str1) + strlen(str2) + 1));
strcpy(result, str1);
strcat(result, str2);
回答5:
strcat(s1, s2). Watch your buffer sizes.
来源:https://stackoverflow.com/questions/968316/concatenating-strings-in-c