✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
int main (void) {
int A = 5, B = 2, C = 7, *P1, *P2;
P1 = &A;
P2 = &C;
*P1 = *P2 - B;
printf("VALOR DE A %d B %d C %d", A, B, C);
return 0;
}
¿Qué salida produce este programa?