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”

13 views

1 Answers

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

13 views