什么是空指针常量(null pointer constant)?[6.3.2.3-3] An integer constant expression with the value 0, or such an expression cast to type void *, is called a null pointer constant.这里告诉我们:0、0L、’\0’、3 – 3、0 * 17 (它们都是“integer constant expression”)以及 (void*)0 (ty