C\C++语言中结构体变量的指向运算符”→”在编辑环境中如何输入 如: #include<stdio.h>struct student {int number;char *name;char sex;int age;}Void main(){struct student stu1={20134,”Wang Hon... 展开
C\C++语言中结构体变量的指向运算符”→”在编辑环境中如何输入 如: #include<stdio.h>struct student {int number;char *name;char sex;int age;}Void main(){struct student stu1={20134,”Wang Hong”,’m’,22},*pstu=&stu1;printf(“stu1. number=%5d,pstu→age=%2d\n”,stu1. number,pstu→age);}请问指向运算符“→"在编辑环境中如何输入 ? 谢谢 收起