What is the output of the following code? #includeint functi…
What is the output of the following code? #includeint function(int, int);int main(int argc, char* argv[]){ int a = 25, b = 24 + 1, c; printf(“%d”, function(a, b)); return 0;}int function(int x, int y){ return (x – (x == y));}
Read Details