大神帮我看看,编的对不对
void myStrCat(char p1[], char p2[], char p3[])该函数将字符串p1和p2连接起来,赋值给字符串p3
#include "stdafx.h"
int _tmain(int argc, _TCHAR* argv[])
{
char p1[10] = "i";
char p2[10] = "love u";
char p3[50];
myStrCat(p1,p2,p3);//调用
printf("%s\n",p1);
printf("%s\n",p2);
printf("%s\n",p3);
return 0;