+ 1
Why doesn't this work
2 Answers
+ 14
Now it works:
#include <iostream>
using namespace std;
int main() {
bool a = false;
if(a == 0){
cout<<"hello";
}
else{
cout<<"hi";
}
return 0;
}
+ 1
thank you i just realised it