可以使用memset函数将字符串数组中所有元素全部设置为\0即可。函数原型:void *memset(void *s, int ch, size_t n);函数说明:将s中前n个字节 (typedef unsigned int size_t )用 ch 替换并返回 s 。示例:include <stdio.h>#include <string.h> int main(){char buf[256] = "hello wor...
可以使用memset函数将字符串数组中所有元素全部设置为\0即可。 函数原型:void *memset(void *s, int ch, size_t n); 函数说明:将s中前n个字节 (typedef unsigned int size_t )用 ch 替换并返回 s 。 示例:#include <stdio.h>#include <string.h> int main(){char buf[256] = "hello world"; /...
由于空字符的ASCII码是0,直接赋值为0也是可以的
是转义字符,这两种办法都是可以的 由于空字符的ASCII码是0,直接赋值为0也是可以的