Question 2: Trace and determine the output of the following…

Question 2: Trace and determine the output of the following program. Justify your answer by explaining the code with comments.  #include int main() {     int x, y, z, w, v;     int *p1, *p2;     p1 = &x;     *p1 = 2;     p2 = &y;     *p2 = *p1 * 3;    //Add your comment:              p1 = &z;              //Add your comment:              *p1 = *p2 – *(&x);     //Add your comment:                   p2 = &w;             //Add your comment:              *p2 = *(&z) + *(&y);      //Add your comment:                p1 = &v;                       //Add your comment:              *p1 = *(&w) – *(&z) + *(&x); //Add your comment:              printf(“%d  %d  %d  %d  %d\n”, x, y, z, w, v);     return 0; }