Apr 18, 2002 #1 Bratan Technical User Joined Jul 13, 2008 Messages 3 Location AP Help me! How it is possible to add a char to the end of my string? char A='!'; CString String="Hello"; It should be "Hello!" Any ideas?
Help me! How it is possible to add a char to the end of my string? char A='!'; CString String="Hello"; It should be "Hello!" Any ideas?
Apr 18, 2002 #2 LoveInSnowing Programmer Joined Feb 3, 2002 Messages 7 String += A; Upvote 0 Downvote