fork download
  1. #include <iostream>
  2. using namespace std;
  3. typedef struct {
  4. bool b = true;
  5. } bla;
  6.  
  7. int main() {
  8. // your code goes here
  9. bla b;
  10. cout << b.b << endl;
  11. return 0;
  12. }
Success #stdin #stdout 0s 3412KB
stdin
Standard input is empty
stdout
1