IT

typedef          old type           new type

typedef struct test{int a; char b; }     j;


typedef struct {

        char name[20];

        float height;

        float weight;

} STUDENT;


STUDENT st;

STUDENT *p;


p = &st;


//st.Age

//p->Age == (*p).Age

'소프트웨어 > C언어' 카테고리의 다른 글

구조체_컴파일러최적화  (0) 2011.06.21
Return  (0) 2011.06.21
int main(int inum, char *str[])  (0) 2011.06.20
char 배열vs char 포인터배열  (0) 2011.06.20
strlen 함수 만들기  (0) 2011.06.17
Posted by sinpk