19.(1.0分)有以下程序 main() int a=2,b=4, c=5; L202a,*p2=&b,*p=&c; int p *p=*p1*(*p2); printf("%d\n",c); 执行后的输出结果是
时间: 2023-12-14 21:40:06 浏览: 156
程序存在错误,无法通过编译。应该将第四行的“L202a”改为“int”,同时在第六行的“int”前加上“*”。修改后的程序如下:
```
int main() {
int a = 2, b = 4, c = 5;
int *p1 = &a, *p2 = &b, *p = &c;
*p = *p1 * (*p2);
printf("%d\n", c);
return 0;
}
```
执行后输出结果为20。
阅读全文