What will be the output of the following
code?
#include<stdio.h>
void fun(int *p, int *q)
{
p = q;
*p = 2;
}
int main()
{
int i = 0, j = 3;
fun(&i, &j);
printf("%d %d", i, j);
return 0;
}
Answers
Answered by
2
Answer:
nothing in computers man have you studied man
Similar questions