Friday, October 18, 2019

One Dimensional Array Demo in C++

Here is a simple program that I wrote to show you guys how to declare, initialize and display the elements in the one-dimensional array in C++.

 I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.


My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City I also accepting computer repair, networking and Arduino Project development at a very affordable price.


Sample Program Output


Program Listing

// array.cpp
// Author : Jake Rodriguez Pomperada,MAED-IT
// Date   : October 18, 2019 Friday 5:50 AM


#include <iostream>

using namespace std;


int main() {
int array[5] = {10,20,30,40,50};
cout <<"\n\n";
cout <<"\tOne Dimensional Array Demo in C++";
cout <<"\n\n";
cout <<"\tThe content of the array";
cout <<"\n\n";
cout <<"\t";
for (int a=0; a<5; a++){
cout  <<" " <<array[a]<<" ";
}
    cout <<"\n\n";
cout <<"\tEnd of Program";
}


No comments:

Post a Comment