What does the following program print?
#include
void f (int *p, int * g)
{
p = q;
* p = 2;
}
int i = 0, j = 1;
int main ( )
{
f(&i, &j);
print f ("%d%d n", i, j) ;
return 0;
}
Reveal answer
Fill a bubble to check yourself
