![]() |
#2
teifion6662011-05-18 01:12
|

# include <stdio.h>
struct student
{
int age;
int score;
char set;
};
int main(void)
{
struct student st = {18, 90,'B'};
printf("age = %d\nscore = %d\nset = %c\n",st.age ,st.score ,st.set);
return 0;
}
struct student
{
int age;
int score;
char set;
};
int main(void)
{
struct student st = {18, 90,'B'};
printf("age = %d\nscore = %d\nset = %c\n",st.age ,st.score ,st.set);
return 0;
}
