运行以下结构体程序,输出为()
struct Craft { int num; char name[10]; }x; int main() { x.num=5; cout<<x.num+3; return 0; }
8
5
3
10