A function that takes two char arguments and returns true if both the arguments are equal otherwise false
Answers
Answered by
2
Explanation:
boolean equality( char a, char b)
{
boolean z;
if (a==b)
z=true;
else
z=false;
return z;
}
Similar questions