#include #include int main ( void ) { int *x; //违背1 //... x = ( int * ) malloc ( sizeof ( int ) ); if ( NULL != x ) { *x = 1; } else { return ( -1 ); } return ( 0 ); }