#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);}