summaryrefslogtreecommitdiff
path: root/ccc/cat_char.cc
diff options
context:
space:
mode:
Diffstat (limited to 'ccc/cat_char.cc')
-rw-r--r--ccc/cat_char.cc16
1 files changed, 16 insertions, 0 deletions
diff --git a/ccc/cat_char.cc b/ccc/cat_char.cc
new file mode 100644
index 0000000..3daf564
--- /dev/null
+++ b/ccc/cat_char.cc
@@ -0,0 +1,16 @@
+#include <iostream>
+#include <string.h>
+
+using namespace std;
+
+
+int main(void)
+{
+ char c[] = "c";
+ char x[1024];
+ string s("s");
+ strcpy(x, s.c_str());
+ strcat(x, c);
+ cout << x << endl;
+}
+