What is the output of the following code?
#includestdio.h
void fun(int s)
{
s=60;
}
int main(void)
{
int s=40;
fun(s);
printf ("s= %d",s);
return 0;
}


Posted on by