
- Forum
- Programming Talk
- C and C++
- Is Concatenation Possible
Is Concatenation Possible
This is a discussion on Is Concatenation Possible within the C and C++ forums, part of the Programming Talk category; Can I use a strcat() function in C programming language to concatenate a string to a character constant. If I ...
-
Is Concatenation Possible
Can I use a strcat() function in C programming language to concatenate a string to a character constant. If I attempt to do that what will be the result?
-
04-24-2007, 08:32 AM #2
- Join Date
- Apr 2006
- Answers
- 124
strcat() is used only to concatenate two strings. So you cannot use that to concatenate a string to a character constant.
-
12-27-2010, 06:18 AM #3
- Join Date
- Dec 2010
- Answers
- 32
strcat() keyword is used to concatenate two strings but it is not used to concatenate two character...
a string array is terminated by null character, which differentiate it with character array/....
-
Sponsored Ads

Reply With Quote





