// 请编程,输出 '\0' == 0 的结果
#include <stdio.h>
int main()
{
printf("'\\0' == 0 的结果为: %d\n", '\0' == 0); // \0 需要转义为 \\0
return 0;
}