今天我发现输出'\0'和空格效果是一样,如#include <stdio.h>int main(){ int i; for(i=0;i<10;i++) putchar('\0'); return 0;}把putchar里面的'\0'换成' ';效果是一样的,为什么?