Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

Explain

#include <stdio.h>
int fun(int a,int *b)
{
*a = *a+*b;
*b = *a-*b;
*a = *a-
b;
}
main()
{
int x = 10,y = 20;
fun(&x,&y);
printf("x= %d y = %d\n", x, y);
}
by

0 Answers

No Answer posted yet.

Login / Signup to Answer the Question.