這給了我一個錯誤代碼: #include <stdio.h>
char *strDup(char *,int);
int main (void)
{
char p[1000];
int n=0;
char *q;
printf("plz enter a string : ");
gets(p);
printf("plz ent
我想不起我的問題的正確標題,所以在這裏。我正在學習C語言,下面的代碼來自我正在學習的教程。 struct Person {
char *name;
int age;
int height;
int weight;
};
struct Person *Person_create(char *name, int age, int height, int w