填空题 写出下列程序的运行结果( )。 #include using namespace std; struct MyStruct { int num; char *str; }; int main 1 { MyNtruct my; my.num=100; my.sti="Hello"; cout<<"The num of my is "<
  • 1、
【正确答案】 1、The num of my is 100 The str of my is Hello    
【答案解析】