fork(5) download
  1. #include <iostream>
  2. #include <array>
  3. #include <iterator>
  4. #include <string.h>
  5. using namespace std;
  6.  
  7. template<typename T> void ZeroIt(T& value)
  8. {
  9. memset(&value,0,sizeof(value));
  10. }
  11.  
  12. int main()
  13. {
  14. //создать тестовый массив
  15. std::array<int,3> alpha={2,4,5};
  16.  
  17. std::ostream_iterator<int> out(std::cout," ");
  18. //напечатать тестовый массив
  19. std::copy(alpha.begin(),alpha.end(),out);
  20. //перевести строку
  21. std::cout << std::endl;
  22. //обнулить массив
  23. ZeroIt(alpha);
  24. //нвпечатать еще раз для контроля
  25. std::copy(alpha.begin(),alpha.end(),out);
  26.  
  27. return 0;
  28. }
Success #stdin #stdout 0s 3412KB
stdin
Standard input is empty
stdout
2 4 5 
0 0 0