[求助]编译无法通过,错误在哪里?
#include<stdio.h>
struct node
{int i;
int *p=&i;
char c;
char *q=&c;
}s;
main()
{
printf("\n%o\t%o\t%o\t%o",&s.i,s.p,s.q,&s.c);
}
#include<stdio.h>
struct node
{int i;
int *p=&i;
char c;
char *q=&c;
}s;
main()
{
printf("\n%o\t%o\t%o\t%o",&s.i,s.p,s.q,&s.c);
}
2007-04-05 18:46
2007-04-05 19:11