Q. 45 What does the following program print ?
#include<stdio.h>voidf(int*p,int*q){p = q;*p = 2;}inti = 0, j = 1;intmain(){f(&i, &j);printf("%d %d \n", i, j);getchar();return0;
(A) 22
(B) 21
(C) 01
(D) 02
Answer: (D)
Explanation:












