我不能使用xstrcpy複製和打印,並打印一個空行,當我嘗試雖然打印整個字符串主while循環打印每個字符...但不是字符串立即while循環之下.. .Don't知道爲什麼會這樣:(面臨的一些問題,下面的一段代碼...有什麼不對嗎?
代碼:
#include<stdio.h>
#include<stdlib.h>
int xstrlen(char *);
char * xstrcpy(char *,char *);
main()
{
char *expptr1="Hello World";
char *expptr2 = "Hello Again";
char *expptr3;
printf("%d\n",xstrlen(expptr1));
expptr3 = xstrcpy(expptr1,expptr2);
printf("%s\n",expptr3);
}
int xstrlen(char *ptr)
{
//printf("I am here\n");
int count = 0;
while(*ptr++!='\0')
count++;
return count;
}
char * xstrcpy(char *ptr1,char *ptr2)
{
int i=xstrlen(ptr2);
printf("%s\n",ptr1);
printf("%s\n",ptr2);
ptr1 =(char *)malloc(i);
//printf("i am here\n");
while(*ptr2 != '\0')
{
*ptr1 = *ptr2;
printf("%c\n",*ptr1);
ptr1++;
ptr2++;
}
printf("%s",ptr1);
return ptr1;
}
輸出:
11
Hello World
Hello Again
H
e
l
l
o
A
g
a
i
n
ׁׁ
Exited: ExitFailure 4
請發表您的問題,下一次的代碼。 – 2011-05-11 18:15:57