执行下面的代码,输出的是( )
char s[20] = "Hello,C++"; printf("%11.6s", s);
Hello,C++(左边2空格)
> Hello,(左边5空格)
Hello, (右边5空格)
Hello,C++ (右边2空格)