* example program to demonstrate the passing of an array */ #include int maximum( int [] ); /* ANSI...

Post on 19-Jan-2016

225 views 0 download

Tags:

Transcript of * example program to demonstrate the passing of an array */ #include int maximum( int [] ); /* ANSI...

Create program that uses

Arrays

Create program that uses Arrays

ContentsPre Test

Introducing Arrays

Defining and Initializing Arrays

Passing Arrays to Function

Post Test

Pre Test

It is the programming language

a. URLb. C ++

c.Notepadd.Browser

also known as vector or multidimensional languages

a. Pointersb. Characters

c. Arrayd. Strings

Two types of Array

a. One dimension and multi-dimension array

Programming language

a. Notepad b. URL

b. Wattpad and Notepad

c. Browserd. C ++

What is Array ?An array is a series of elements of the same type placed in contiguous memory locations that can be individually referenced by adding an index to a unique identifier.

What is Array ?

An array is a series of elements of the same type placed in contiguous memory locations that can be individually referenced by adding an index to a unique identifier.

Defining and Initializing Arrays When declaring a regular array of local scope (within a function, for example), if we do not specify otherwise, its elements will not be initialized to any value by default, so their content will be undetermined until we store some value in them. The elements of global and static arrays, on the other hand, are automatically initialized with their default values, which for all fundamental types this means they are filled with zeros

Multidimensional Array

Multidimensional arrays can be described as "arrays of arrays". For example, a bidimensional array can be imagined as a bidimensional table made of elements, all of them of a same uniform data type.

One Dimensional Array

A one-dimensional array is a structured collection of components (often called array elements) that can be accessed individually by specifying the position of a component with a single index value.

Passing Arrays to Function

/* example program to demonstrate the passing of an array */#include <stdio.h>int maximum( int [] ); /* ANSI function prototype */

int maximum( int values[5] ){

int max_value, i;

max_value = values[0];for( i = 0; i < 5; ++i )

if( values[i] > max_value )max_value = values[i];

return max_value;}

main(){

int values[5], i, max;

printf("Enter 5 numbers\n");for( i = 0; i < 5; ++i )

scanf("%d", &values[i] );

max = maximum( values );printf("\nMaximum value is %d\n", max );

Post Test

It is the programming language

a. URLb. C ++

c.Notepadd.Browser

also known as vector or multidimensional languages

a. Pointersb. Characters

c. Arrayd. Strings

Two types of Array

a. One dimension and multi-dimension array

Programming language

a. Notepad b. URL

b. Wattpad and Notepad

c. Browserd. C ++

References

http://www.cplusplus.com/doc/tutorial/arrays

http://www.learncpp.com/cpp-tutorial/65-

multidimensional-arrays/

http://www.google.com.ph

Acknowledgement

I would like to thank my friends for

supporting me beyond my needs.

Special thanks to:

Mr. John RelubaMy Classmatesand ME !!!Copy Right 2012

Sorry…Back

Sorry…Back

Your HOT !!!BackCorrec

t

Your HOT !!!BackCorrec

t