Answered step by step
Verified Expert Solution
Question
1 Approved Answer
What is the output of this program? #include void test(int *, int *); int main() { int a = 5, b=6; test(&a,&b); printf(%d %d,a,b);
What is the output of this program? #include void test(int *, int *); int main() { int a = 5, b=6; test(&a,&b); printf("%d %d",a,b); return 0; } void test(int *p, int *q) { *p = *p**q; *q= *p+*q; *p=p/q; }
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Now lets analyze the code In the main function two integer variables a and b are declared ...
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