Question: Exercise: What is the output? void swap_vectors(int *a, int *b, int n) { int *t; t=a; a=b; b=t; print_vector(a,3); print_vector(0,3); } int a[3]={1,2,3}; int b[3]={4,5,6);

 Exercise: What is the output? void swap_vectors(int *a, int *b, int

Exercise: What is the output? void swap_vectors(int *a, int *b, int n) { int *t; t=a; a=b; b=t; print_vector(a,3); print_vector(0,3); } int a[3]={1,2,3}; int b[3]={4,5,6); swap_vectors(a,b,3); print_vector(a,3); print_vector(b,3)

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!