例えば:
これは私が試したものです:
#include "stdafx.h"
#include <ctype.h>
char *mystrcat(char *s1p, char *s2p);
char main(void)
{
...........................
}
char *mystrcat(char *s1p, char *s2p)
{
printf("whatever = %s%s\n", s1p, s2p);
return 0;
}
p1
これを 3 番目のポインタで機能させ、保存するにはどうすればよいp2
ですか?