Predict the answer?
# include stdio.h
void fun(int x)
{
x = 30;
}

int main()
{
int y = 18;
fun(y);
printf("%d", y);
return 0;
}

Posted on by