iTech College - Internet Technology, Online Education, E-Learning, Technician Training, Tech Tutorials, Distance Education, Virtual Learning C++ Course: Arrays - www.itechcollege.com C++ Course: Arrays - www.itechcollege.com
Free Courses
HTML
JavaScript
CSS
ASP
PHP
JSP
C++
ASP.NET
SQL
AJAX
FTP
XML

courses > C++ > Arrays

Arrays

In C++, an array must be declared before it is used. A typical declaration for an array is:

type name [elements];

For example:

int month [4];

"int" is data type, "month" is array name, "4" is elements.

We can assign initial values to each one of its elements by enclosing the values in braces { }.

For example:

int month [4] = {6, 7, 11, 12};

Be default, array index starts from 0. In the above array, the index numbers and values are assigned like this:

Index: 0   1   2   3 
Value: 6   7   11  12

You can leave the square brackets empty [ ], and let the compiler assign the index number for each value:

int month [] = {6, 7, 11, 12};

We can assign or change a single value to an element in this way:

month[2] = 9;

This will store the value 9 in the third element [2] of the array month.

To print the value of an element, we can write lines like the following:

a = month[2];
cout << a;


  Back to Index Page
 Next Page:  

Include a File and Main Function
Output and Input Data
Variables
Arrays
Operators
The If Statement and The Switch Statement
Loops
Function
Read and Write a Text File
Using Database MySQL
Drawing and Graphics


Online Education, Online Training for Your Job, Distance Education, E-learning Programs for Your Career!Online Colleges, Online Universities, E-learning & Distance Education for Your Career! Easy Job Training & Online Courses.


   Email A Friend  
 
Earn Online Degree
for Your Job
I found a job after I earned an online degree!
Online classes for finding a Job. Online College, Online University, Degrees, E-learning school, online certificate Earn your
online degree now!
Online Training
for Good Job
Why I work so hard but earn so little? Why I cannot find a high paying job?
Online training for a Good Jobs. Online Degree, E-learning school, online certificate Go to
online school now!

Copyright ©2024, itechcollege.com. All rights reserved
iTechCollege | About iTech | Contact iTech