填空题

若有以下程序:
#include <iostream>
using namespace std;
int main()

char str[10];
cin>>str;
cout<< str<<end1;
return 0;

当输入为:
This is a program!
那么执行程序后的输出结果是 【15】

【参考答案】

This