#include<stdio.h>void main(){ char *p="nyks"; p[2]='n'; printf("%s",p);}这会因SEGMENTATION FAULT崩溃。有人可以解释为什么吗?C 查看完整描述