IT기초/C 언어

[C language] 구조체 포인터 연습

ITtechRoy 2014. 9. 8. 22:47
728x90
반응형

[C language] 구조체 포인터 연습  

 

 

#include<stdio.h>

struct student
{
 char no[10];
 char name[20];
 double total;
};

int main()
{
 struct student stu={"20202020", "gogo", 100 };
 struct student* p=NULL;
 struct student** pp=NULL;

 p=&stu;
 pp=&p;

 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);

 

printf("%s %s %lf \n", (**pp).no, (**pp).name, (**pp).total);
printf("%s %s %lf \n", (*pp) -> no, (*pp) -> name, (*pp) -> total);

 

return 0;
}

 

 

 



악성코드 wep wpa crack phising mitm 맛집 해킹 hacking web 웹 네트워크 network 학원 해커 크래커 hacker cracker 강아지 dog 고양이 해운대 강남 서면 보쌈 치맥 치킨 맥주 육회 회 포렌식 침해대응 cert 관제 모의해킹 mobile 모바일 무선 wireless 디지털포렌식 Clanguage C언어 C# JSP JAVA tool 해킹방어대회 ctf 문제풀이 기타 맛집 해킹 hacking web 웹 네트워크 network 학원 해커 크래커 hacker cracker 강아지 dog 고양이 해운대 강남 서면 보쌈 치맥 치킨 맥주 육회 회 포렌식 침해대응 cert 관제 모의해킹 mobile 모바일 무선 wireless wep wpa crack phising mitm 디지털포렌식 악성코드 Clanguage C언어 C# JSP JAVA tool 해킹방어대회 ctf 문제풀이 기타

728x90
반응형