Qual'è il carattere di congiunzione...? in c++?

Es.

if ((token2.at(0)==token.at(0)) || (token2.at(0) == token.at(1)) || (token2.at(0)==token.at(2)) || (token2.at(1)==token.at(0)) || (token2.at(1) == token.at(1)) || (token2.at(1)==token.at(2)) || (token2.at(2)==token.at(0)) || (token2.at(2) == token.at(1)) || (token2.at(2)==token.at(2)) || (token2.at(3)==token.at(0)) || (token2.at(3) == token.at(1)) || (token2.at(3)==token.at(2)) || (token2.at(4)==token.at(0)) || (token2.at(4) == token.at(1)) || (token2.at(4)==token.at(2))) {

questo if l'ho solo su una riga...

se volessi scomporlo in più righe quale carattere di fine riga e di congiunzione dovrei usare?

Grazie