#include int main() { int *m = malloc( sizeof( int ) ); *m = 32; /* ERROR */ return 0; }