Advertisement
irapilguy

Untitled

Jan 30th, 2021
700
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.15 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. void main()
  5. {
  6.     short arr[4] = { 1, 2, 3, 4, 5 };
  7.     for (int i = 0; i < 4; i++)
  8.         cout << arr[i] << "\t";
  9. }
  10.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement