首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴LSW734371815的代码贴全部
#include<iostream>
#include<cstring>
using namespace std;
int main()
{
    const char *cp1="hello world";
    const char *cp2="thank you very much";
    strcat(cp1,cp2);
    cout<<cp1<<endl;
    return 0;
}
阅读全部 | 2012年2月25日 21:46
1
LSW734371815