"&&"和"和"之间有什么区别吗?

pay*_*oob 10 c++ operators

&&和之间有什么区别and吗?例如:

bool resA = (a and b and c);  
bool resB = (a && b and c);
Run Code Online (Sandbox Code Playgroud)

resAresB相同或如果不究竟如何他们有所不同,为什么会选择一个一个比其他?