#include int main ( void ) { unsigned int *ptr = NULL; unsigned int adr = 0; unsigned int uid = 0; ptr = adr; //违背1 adr = &uid; //违背2 return ( 0 ); }