标签:ref tps print ike %s http family str data
指针指向结构中的成员变量,其形象是个箭头,代表指向的结构
比如:
struct STUDENT { int number; char name[20]; } a,*p;
a.number=101; strcpy(a.name,"王小明");
p=a; if ( p->number==101 ) printf("%s\n",p->name);
当用实例访问结构中的变量number时,写成a.number
当用指向实例的指针访问时,写成p->number
标签:ref tps print ike %s http family str data
原文地址:https://www.cnblogs.com/aprincess/p/11650836.html