fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int main() {
  5. bool a[10] = {false};
  6. for (int i = 0; i <= 9; i++) cout << a[i] << " ";
  7. return 0;
  8. }
Success #stdin #stdout 0s 16064KB
stdin
Standard input is empty
stdout
0 0 0 0 0 0 0 0 0 0