What will be the output of the program?
#includestdio.h
int check(int);
int main()
{
int i=48, c;
c = check(i);
printf("%d\n", c);
return 0;
}
int check(int ch)
{
if(ch = 45)
return 11;
else
return 10;
}


Posted on by