Akash-dev-creator/Practice-
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Repository files navigation
# Practice-
It's my first repo and I'm going with the array through loops.
```cpp
#include <iostream>
using namespace std;
int main(){
int numbers[5]={33,45,18,01,07};
for(i=0;i<=4;i++){
cout << "The number is : "<<numbers[i] << endl;
return 0;
}