填空题
设有以下程序:
#include<iostream>
using namespace std;
int main()
{
int a,b,k:4,m=6,*p1=&k,*p2=&m;
a=p1==&m;
b=(*p1)/(*p2)+7;
cout<<a<<b<<end1;
return 0;
}
执行该程序后,a的值为 ,b的值为 。
【参考答案】
[7]0[8]7
热门
试题
填空题
设有下定义的语句:int a[3][2]={10,20,30,40,50,60};int b[3][2]={10,20,30,40,50,60};则a[1][1]*b[2][1]= 。