디테일이 성패를 결정한다(구조체 지침을 가리킨다)

576 단어 C 언어
//           
#include 
#include 
struct student{
	long num;
	char name[20];
	char sex;
	float score; 
};
int main(){
	struct student stu_1;
	struct student *p;
	p=&stu_1;
	p->num=10101;
	strcpy(stu_1.name,"li lin");
	p->sex='m';
	p->score=89.5;
	printf("no:%ld
name:%s
sex:%c
:%5.1f
", stu_1.num,stu_1.name,stu_1.sex,stu_1.score); printf("no:%ld
name:%s
sex:%c
:%5.1f
", p->num,p->name,p->sex,p->score); return 0; }

좋은 웹페이지 즐겨찾기