列表 5. 未初始化内存区域 (uninit.c)

#include <stdio.h>
int main(void)
{
   char *ptr = NULL;
   *ptr = 10;
   return(0);
}
© . All rights reserved.