Answers for "get an array with c++"

C++
1

get an array with c++

int arr[5];
for(int i=0;i<5;i++)
{
  cin>>arr[i];
}
Posted by: Guest on May-31-2021

Browse Popular Code Answers by Language