Answered step by step
Verified Expert Solution
Question
1 Approved Answer
What is the result of the second prntf statement? #include int main() { int a = 5, b = 15, C = 25; int *p1,
What is the result of the second prntf statement? #include int main() { int a = 5, b = 15, C = 25; int *p1, *p2, *p3; p1 = &c; P2 = &a; p3 = p2; printf("1: %d %d %d ", *p1, *p2, *p3); *p1 * a; while (*p2 > 0) { *p2 = a; (*p1)++; } printf("2: %d %d %d ", *p1, *p2, *p3); printf("3: d&d Red ", a, b, c); return 0; } 2:25 5 5 2:125 0 0 O2: 126 0 0 O 2:0 15 126 O 2:15 15 126
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started