The OR statement



if (cond == 'Y' || cond == 'y')

do {



}

The above statement written in C would imply that both condition, Y or y, is acceptable. The two vertical bars, called 'sticks', represent the or conjuction.