+3 votes
in Class 12 by kratos

State whether the statement is True or False? No matter the underlying data type if values are equal returns true,

char ch1, ch2;

if (ch1==ch2)

print “Equal”

1 Answer

+1 vote
by kratos
 
Best answer

True two values of the same data types can be equal.

...