验证 结构体指针与自增运算符

#include <stdio.h>
#include <stdlib.h>

int main() {

 struct student {
  char *name;
  int score;
 };

 struct student st = {"Brian", 97};
 struct student *ptr = &st;

 printf("ptr->name = %s
", ptr->name);
 printf("*ptr->name = %c
", *ptr->name);
 printf("*ptr->name++ = %c
", *ptr->name++);//获取首地址字符后,将name指针友谊一位,指向r
 printf("*ptr->name = %c
", *ptr->name);
 printf("ptr->score = %d
", ptr->score);
 printf("ptr->score++ = %d
", ptr->score++);
 printf("ptr->score = %d
", ptr->score);
 return 0;
}


1. ptr->name,等同于打印(*p).name。

2. *ptr->name,因为->的优先级高于*,所以相当于: *(ptr->name)。即指针首地址的那个字符。

3. *ptr->name++,由于*和++的优先级相同,而且结合性是由右至左,所以相当于: *((ptr->name)++),即获取首地址字符后,将name指针右移一位。(当前打印还是首地址的值)

4. *ptr->name,此处为验证上一步的指针位置。

原文地址:https://www.cnblogs.com/iloverain/p/5632985.html