c语言中指向结构体指针问题,求大神,为甚么printf("%d",*p);错误*去掉了却可以了
c语言中指向结构体指针问题,求大神,为甚么printf("%d",*p);错误*去掉了却可以了
日期:2021-06-14 04:12:31 人气:1
指针用的不对
应该是
#include<stdio.h>
#include<stdlib.h>
#include<math.h>
int main()
{
struct student
{
int num;
char c[10