fork download
  1. #include <iostream>
  2.  
  3. int main()
  4. {
  5. unsigned int arr[4] = {0};
  6.  
  7. for (auto a : arr)
  8. std::cout << a << '\n';
  9. }
Success #stdin #stdout 0s 3412KB
stdin
Standard input is empty
stdout
0
0
0
0