123456789101112
struct s { char arr[100]; int i; } ; int main() { s *p = (s *) malloc (sizeof(s)); memset(p, NULL, sizeof(s)); return 0; }