执行下列程序,输出的结果是( )。
#include <iostream> using namespace std; int main() { char s1[10] = "Follow"; char s2[] = "me"; cout<<s1<<" "<<s2; return 0; }
Follow
me
Followme
Follow me
发表评论