输出结果第二个数报错
为什么输出的是90,25775849394
而不是90,98呀?
#include<stdio.h>
struct Student
{
int math;
int English;
};
int main()
{
struct Student s[50];
s[49].math=90;
s[49].English=98;
printf("%d,%d\n",s[49]);
return 0;
}
为什么输出的是90,25775849394
而不是90,98呀?
#include<stdio.h>
struct Student
{
int math;
int English;
};
int main()
{
struct Student s[50];
s[49].math=90;
s[49].English=98;
printf("%d,%d\n",s[49]);
return 0;
}
2022-09-10
举报