I have a a char array:
char* name = "hello";
I want to add an extension to that name to make it
hello.txt
How can I do this?
name += ".txt" won't work
|
I have a a char array:
I want to add an extension to that name to make it
How can I do this?
|
||||
|
|
|
Have a look at the strcat function. In particular, you could try this:
|
|||||||||||||
|
No, you have a character pointer to a string literal. In many usages you could add the const modifier, depending on whether you are more interested in what name points to, or the string value, "hello". You shouldn't attempt to modify the literal ("hello"), because bad things can happen. The major thing to convey is that C does not have a proper (or first-class) string type. "Strings" are typically arrays of chars (characters) with a terminating null ('\0' or decimal 0) character to signify end of a string, or pointers to arrays of characters. I would suggest reading Character Arrays, section 1.9 in The C Programming Language (page 28 second edition). I strongly recommend reading this small book ( <300 pages), in order to learn C. Further to your question, sections 6 - Arrays and Pointers and section 8 - Characters and Strings of the C FAQ might help. Question 6.5, and 8.4 might be good places to start. I hope that helps you to understand why your excerpt doesn't work. Others have outlined what changes are needed to make it work. Basically you need an char array (an array of characters) big enough to store the entire string with a terminating (ending) '\0' character. Then you can use the standard C library function strcpy (or better yet strncpy) to copy the "Hello" into it, and then you want to concatenate using the standard C library strcat (or better yet strncat) function. You will want to include the string.h header file to declare the functions declarations.
|
||||
|
|
|
First copy the current string to a larger array with strcpy, then use strcat. For example you can do:
|
||||
|
|
|
You could copy and paste an answer here, or you could go read what our host Joel has to say about strcat. |
|||
|
|
|
|||
|
|
|
|
|||
|
|