#include <iostream> using namespace std; int main() { // your code goes here _Bool b = false; if(b == 0) printf("FALSE"); else printf("TRUE"); return 0; }
Standard input is empty
prog.cpp: In function ‘int main()’:
prog.cpp:6:2: error: ‘_Bool’ was not declared in this scope
_Bool b = false;
^
prog.cpp:6:8: error: expected ‘;’ before ‘b’
_Bool b = false;
^
prog.cpp:7:5: error: ‘b’ was not declared in this scope
if(b == 0)
^
prog.cpp:8:17: error: ‘printf’ was not declared in this scope
printf("FALSE");
^
prog.cpp:10:16: error: ‘printf’ was not declared in this scope
printf("TRUE");
^
Standard output is empty