Рет қаралды 544
Gate CS pyqs - the other way [Eng]
What does the following program print?#include stdio.hvoid f(int *p, int *q){ p = q; *p = 2;}int i = 0, j = 1;int main(){ f(&i, &j); printf("%d %d ", i, j); getchar(); return 0;}(A) 2 2(B) 2 1(C) 0 1(D) 0 2