新手求教,这个怎么输出不了地址?
#include <stdio.h> void main()
{
struct student
{
int num;
char name;
char sex;
float score;
}boy1;
boy1.num =007;
boy1.name="jane";
printf("The address of struct is %0:\n",&boy1);
printf("The address of num is %0 :\n",&boy1.num);
}