#include <stdio.h> struct s1{ char c; int i[2]; double v; } *p; int main(){ p->c = 'a'; p->v = 100; printf("%c", p); return 1; }