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 13:40:11 浏览: 113
程序有语法错误,应该修改为:
```
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
阅读全文