Boolean Datatype in C++
In this video, we are going to see boolean datatype available in C++ programming language. There are no types of boolean datatype. But it works a bit different. This video will cover boolean datatype in C++ in detail.
Series playlist ▶︎ https://youtube.com/playlist?list=PLt4rWC_3rBbWnDrIv4IeC4Vm7PN1wvrNg
Source Code:
#include <iostream>
using namespace std;
int main(){
bool b = 12;
// cout<< b << endl;
bool another;
another = false;
// cout<< another << endl;
/* bool durust = false;
if(durust)
cout<< "YES!" << endl; */
return 0;
}
0 Comments