有以下程序段,其输出结果是( )
#include<iostream>
using namespace std;
void main()
{char b[]='Hello,you';
b[5]='!';
cout<<b<<endl;
}