首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴人生如题的代码贴C++
#include "iostream"
#include "string.h"
#define N1 10
#define N2 10
#define N 20
void str_cat(char s1[],char s2[],char s[])
{
int i=0,j=0;
while(s1[i])
{
s[i]=s1[i];
i++;
......................
阅读全部 | 2013年5月6日 15:33
1
人生如题