Answers for "c++ if bool true"

C++
0

c++ if bool true

Consider : // where early is bool // where late is bool

if (!late && early) {
	//RESULT
  	return 0;
}

is the same as:

if (late == false && early == true) {
	//RESULT
  	return 0;
}
Posted by: Guest on August-10-2021

Browse Popular Code Answers by Language