printf语句中包含'\0'字符的处理
1 #include2 3 int main (void)4 {5 printf("helloxx\0xxworld\n");6 printf("\n------------\n");7 printf("hello%sworld\n", "xx\0xx");8 }
本文共 235 字,大约阅读时间需要 1 分钟。
printf语句中包含'\0'字符的处理
1 #include2 3 int main (void)4 {5 printf("helloxx\0xxworld\n");6 printf("\n------------\n");7 printf("hello%sworld\n", "xx\0xx");8 }
转载于:https://www.cnblogs.com/itpoorman/p/3898419.html