请介绍内存、CPU在执行以下C++代码的过程: string msg; int a; int b; int c; a = 3; b = 5; c=a+b; msg="The sum of a and b is:"; cout << msg << c << endl;

视频信息