C程序面试中曾经面试过这样一道题:
#include <stdio.h> int main() { char *p = "12345"; *p = '6'; printf("修改后的字符串是%s\n", p); return 0; }