Computer Science, asked by karanlokaraju4, 3 months ago

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 pranavrustagi8
2

Answer:

nothing in computers man have you studied man

Similar questions