Guest User

Untitled

a guest
Nov 17th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. #include <array>
  2. #include <iostream>
  3.  
  4. int main() {
  5. std::array<int, 5> nums { 72, 101, 108, 108, 111 };
  6. for (auto& num : nums) {
  7. printf("%c", num);
  8. }
  9. return 0;
  10. }
  11.  
  12. Hello
Add Comment
Please, Sign In to add comment