#2827. [GESP202412 三级 C++] 第 9 题

[GESP202412 三级 C++] 第 9 题

第 9 题

下列程序输出的是( )

string ch="hello";
if(ch[5]==NULL)
{
    cout<<"right"<<endl;
}
else if (ch[5]=='\0')
{
    cout<<"wrong"<<endl;
}
else
{
    cout<<"hello"<<endl;
}

{{ select(1) }}

  • right
  • wrong
  • hello
  • 不能正确执行