char four[4] = “four”; What are the correct semantics for this statement?

后端 未结 4 2019
逝去的感伤
逝去的感伤 2021-01-18 07:23
int main(void)
{
    char four[4] = \"four\";
    return 0;
}

When compiled as a C++ program, G++ reports

xxx.cpp: In function int

4条回答
提交回复
热议问题