黑马程序员技术交流社区

标题: 这段代码,总是报错,跪求大神教教我怎么运行? [打印本页]

作者: Sunshine丶星空    时间: 2016-2-25 22:36
标题: 这段代码,总是报错,跪求大神教教我怎么运行?

void test();

int main(){

test();

return 0;

}

struct Person{

char *name;

int age;

char c;

};
void test(){

struct Person p1={"itcast",2,’a’

};

printf("name=%s\nage=%d\n",p1.name,p1.age);

struct Person{

char *name;

int age;

};

struct Person p2={"heima",1};

printf("name=%s\nage=%d\n",p2.name,p2.age);
}




作者: 米阳    时间: 2016-3-4 01:35
逻辑和代码书写大致没有错啊 , 你看是不是哪个标点错了
作者: 吴振伟    时间: 2016-3-4 21:02
6666666666
作者: raink001    时间: 2016-3-6 00:08
struct Person p1={"itcast",2,’a’ }; 2和a后边的标点符号是错的
作者: lichuanlong    时间: 2016-3-6 18:02
return 0;  怎么在最上面啊
作者: hanqi    时间: 2016-3-7 14:47
路过,看看。




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2