c++ 指针代码全详解
#include<cstdio>
#include <iostream>
using namespace std;
#include<cstdio>
struct student //struct 不声明都是public 与class相反
{
int snum; //定义
int age, grade; //定义
};
student T; //声明
student *pt;
int main()
{
int *p, *q; //定义了一个指针和一.
原创
2021-12-28 10:01:11 ·
571 阅读 ·
0 评论