Computer Science, asked by wwwkyndupmarz02, 6 months ago

A function that takes two char arguments and returns true if both the arguments are equal otherwise false ​

Answers

Answered by bhattak9617
2

Explanation:

boolean equality( char a, char b)

{

boolean z;

if (a==b)

z=true;

else

z=false;

return z;

}

Similar questions