반응형

IT기초 95

[C language] 구조체 변수로 포인터 사용하기

[C language] 구조체 변수로 포인터 사용하기 #includestruct student { char no[10]; char name[20]; double total; };int main() { struct student stu={"20101010", "asdf", 160}; struct student* p=NULL; p=&stu; printf("%s %s %lf \n", stu.no, stu.name, stu.total); printf("%s %s %lf \n", (*p).no, (*p).name, (*p).total); printf("%s %s %lf \n", p->no, p->name, p->total); // (*p).no == p->no (구조체 포인터 변수에서만 사용) return 0; ..

IT기초/C 언어 2014.09.08
반응형