SlideShare a Scribd company logo
1 of 31
Download to read offline
Nasima Khatun (Keya),
Lecturer
Model Institute Of Science
& Technology
Arrays:
An array is a collection of data that holds
fixed number of values of same type.
The size and type of arrays cannot be
changed after its declaration.
For Example : If you want to store marks
of 100 students you can create an array for it.
float marks[100];
Some examples where the concept of an
array can be used:
• List of temperatures recorded every hour in a day, or a
month or a year.
• List of employees in an organization.
• List of products and their cost sold by a store.
• Test scores of a class of students.
• List of customers and their telephone numbers.
• Table of daily rainfall data.
How to declare an array in C?
Syntax:
data_type array_name[array_ size];
For example:
float mark[5];
Here we declared an array, mark, of
floating-point type and size 5. That it holds 5
floating-point values.
Elements of an array and How to access them?
You can access elements of an array by indices.
Suppose you declared an array mark as above. The first
element is mark[0], second element is mark[1] and so on.
Few Key points:
• Arrays have 0 as the first index not 1. In this example,
mark[0].
• If the size of an array is n, to access the last element, (n-1)
index is used. In this example, mark[4].
• Suppose the starting address of mark[0] is 2120d. Then, the
next address, mark[1], will be 2124d, address of mark[2] will
be 2128d and so on. Its because the size of a float is 4 bytes.
How to Initialize an array?
Its possible to initialize an array during declaration.
For example:
int mark[5] = {9,4,6,3,5};
Another method of initialize array during declaration
int mark[ ] ={9,4,6,3,5};
Here,
mark[0] is equal to 9
mark[1] is equal to 4
mark[2] is equal to 6
mark[3] is equal to 3
mark[4] is equal to 5
Important thing to remember when working with
C arrays:
Suppose you declared an array of 10 elements. Lets say,
int testArray[10];
You can use the array members from testArray[0] to
testArray[9].
If you try to access array elements outside of its bound, lets
say testArray[12], the compiler may not show any error.
However, this may cause unexpected output (undefined
behavior).
Arrays are of three types:
1. One-dimensional arrays.
2. Two-dimensional arrays.
3. Multidimensional arrays.
One-dimensional Array:
A list of item can be given one variable name using
only one subscript and such a variable is called a single subscripted
variable or a one dimensional array.
The Syntax for an array declaration is:
type variable-name[size];
Example:
float height[50];
int groupt[10];
char name[10];
The type specifies the type of the element that will be
contained in the array, such as int, float, or char and the size
indicates the maximum number of elements that can be stored
inside the array.
Now as we declare a array
int number[5];
Then the computer reserves five storage locations as
the size o the array is 5 as show below.
Reserved Space Storing values after Initialization
number[0] number[0]
number[1] number[1]
number[2] number[2]
number[3] number[3]
number[4] number[4]
35
20
40
57
19
Initialization of one dimensional array:
After an array is declared, its elements must be
initialized. In C programming an array can be initialized at
either of the following stages:
At compile time
At run time
Compile Time Initialization:
The general form of initialization of array is:
type array-name[size] ={list of values};
The values in the list are separated by commas.
For example:
int number[3] = {0,5,4};
will declare the variable ‘number’ as an array of
size 3 and will assign the values to each elements.
If the number of values in the list is less than the
number of elements, then only that many elements will be
initialized.
The remaining elements will be set to zero
automatically.
Remember, if we have more initializers than the
declared size, the compiler will produce an error.
Run time initialization:
An array can also be explicitly initialized at run time.
For example consider the following segment of a c program.
for(i=0;i<10;i++)
{
scanf(“%d”, &x[i]);
}
In the run time initialization of the arrays looping
statements are almost compulsory.
Looping statements are used to initialize the values of the
arrays one by one using assignment operator or through the
keyboard by the user.
One dimensional Array Program:
#include<stdio.h>
void main()
{
int array[5];
printf(“Enter 5 numbers to store them in array n”);
for(i=0;i<5;i++)
{
Scanf(“%d”, &array[i]);
}
printf(“Element in the array are: n”);
For(i=0;i<5;i++)
{
printf(“Element stored at a[%d]=%d n”, i, array[i]);
}
getch();
}
Input:
Enter 5 elements in the array: 23 45 32 25 45
Output:
Element in the array are:
Element stored at a[0]:23
Element stored at a[0]:45
Element stored at a[0]:32
Element stored at a[0]:25
Element stored at a[0]:45
Two-dimensional Arrays:
The simplest form of multidimensional array is
the two-dimensional array. A two-dimensional array is, in
essence, a list of one-dimensional arrays.
To declare a two-dimensional integer array of
size[x][y], you would write something as follows:
type arrayName[x][y];
Where type can be any valid C data type and
arrayName will be a valid C identifier.
A two-dimensional array can be considered as
a table which will have x number o rows and y number o
columns.
A two-dimensional array a, which contains
three rows and four columns can be shown as follows.
Column 0 Column 1 Column 2 Column 3
Row 0
Row 1
Row 2
a[0][0] a[0][1]
a[0][2] a[0][3]
a[0][2] a[0][2] a[0][2] a[0][2]
a[0][2] a[0][2] a[0][2] a[0][2]
Thus, every element in the array a is identified
by an element name of the form a[i][j].
where ‘a’ is the name of the array, and ‘i’ and ‘j’
are the subscripts that uniquely identify each element in ‘a’.
Initializing Two-Dimensional Arrays:
Multidimensional arrays may be initialized by
specifying bracketed values for each row.
Following is an array with 3 rows and each row
has 4 columns.
int a[3][4] = {
{0,1,2,3},
{4,5,6,7},
{8,9,10,11}
};
The nested braces, which indicate the intended
row, are optional. The following initialization is equivalent
to the previous example
int a[3][4] = {0,1,2,3,4,5,6,7,8,9,10,11};
Accessing Two-Dimensional Array Elements:
An element in a two-dimensional array is
accessed by using the subscripts. i.e., row index and
column index of the array.
For Example:
int val = a[2][3];
The above statement will take the 4th element
from the 3rd row of the array.
Two-Dimensional Arrays program:
#include<stdio.h>
int main()
{
int a[5][2]={{0,0},{1,2},{2,4},{3,6},{4,8}};
int i,j;
for(i=0;i<5;i++)
{
for(j=0;j<2;j++)
{
printf(“a[%d][%d] = %dn”,i,j,a[i][j]);
}
}
return 0;
}
Output:
a[0][0]: 0
a[0][1]: 0
a[1][0]: 1
a[1][1]: 2
a[2][0]: 2
a[2][1]: 4
a[3][0]: 3
a[3][1]: 6
a[4][0]: 4
a[4][1]: 8
Multi-Dimensional Arrays:
C programming language supports
multidimensional Arrays.
• Multi dimensional arrays have more than one
subscript variables.
• Multi dimensional array is also called as matrix.
• Multi dimensional arrays are array o arrays.
Declaration of Multidimensional Array
A multidimensional array is declared using the
following syntax
Syntax:
data_type array_name[d1][d2][d3][d4]....[dn];
Above statement will declare an array on N
dimensions of name array_name, where each element of
array is of type data_type.
The maximum number of elements that can be
stored in a multi dimensional array array_name is size1 X
size2 X size3....sizeN.
For example:
char cube[50][60][30];
Multidimensional Array program:
#include<stdio.h>
int main()
{
int r,c,a[50][50],b[50][50],sum[50][50],i,j;
printf("tn Multi-dimensional array");
printf("n Enter the row matrix:");
scanf("%d",&r);
printf("n Enter the col matrix:");
scanf("%d",&c);
printf("n Element of A matrix");
for(i=0;i<r;++i)
for(j=0;j<c;++j)
{
printf("n a[%d][%d]:",i+1,j+1);
scanf("%d",&a[i][j]);
}
printf("n Element of B matrix");
for(i=0;i<r;++i)
for(j=0;j<c;++j)
{
printf("n b[%d][%d]:",i+1,j+1);
scanf("%d",&b[i][j]);
}
printf("n Addition of matrix");
for(i=0;i<r; i++)
{
for(j=0;j<c;j++)
sum[i][j]=a[i][j]+b[i][j];
}
for(i=0;i<r;i++)
{
printf("n");
for(j=0;j<c;j++)
{
printf("t%d",sum[i][j]);
}
printf("nt");
}
if(j==c-1)
{
printf("n");
}
return 0;
}
Output
Multidimensional array
Enter the row matrix:2
Enter the col matrix:2
Element of A matrix
a[1][1]:1
a[1][2]:4
a[2][1]:6
a[2][2]:3
Element of B matrix
b[1][1]:1
b[1][2]:7
b[2][1]:3
b[2][2]:9
Addition of a matrix is
2 11
9 12
Arrays

More Related Content

Similar to Arrays (20)

Arrays-Computer programming
Arrays-Computer programmingArrays-Computer programming
Arrays-Computer programming
 
Introduction to Arrays in C
Introduction to Arrays in CIntroduction to Arrays in C
Introduction to Arrays in C
 
Arrays In C
Arrays In CArrays In C
Arrays In C
 
Ch08
Ch08Ch08
Ch08
 
Programming in c arrays
Programming in c   arraysProgramming in c   arrays
Programming in c arrays
 
ARRAYS
ARRAYSARRAYS
ARRAYS
 
Arrays
ArraysArrays
Arrays
 
Unit ii data structure-converted
Unit  ii data structure-convertedUnit  ii data structure-converted
Unit ii data structure-converted
 
Class notes(week 4) on arrays and strings
Class notes(week 4) on arrays and stringsClass notes(week 4) on arrays and strings
Class notes(week 4) on arrays and strings
 
Arrays & Strings
Arrays & StringsArrays & Strings
Arrays & Strings
 
Unit4 Slides
Unit4 SlidesUnit4 Slides
Unit4 Slides
 
Arrays in C language
Arrays in C languageArrays in C language
Arrays in C language
 
Arrays
ArraysArrays
Arrays
 
Array in C
Array in CArray in C
Array in C
 
C++ lecture 04
C++ lecture 04C++ lecture 04
C++ lecture 04
 
Java part 2
Java part  2Java part  2
Java part 2
 
Array
ArrayArray
Array
 
Unit 6. Arrays
Unit 6. ArraysUnit 6. Arrays
Unit 6. Arrays
 
Algo>Arrays
Algo>ArraysAlgo>Arrays
Algo>Arrays
 
Arrays
ArraysArrays
Arrays
 

More from Steven Wallach

Fast Paper Writing Service, 11 Research Paper Writing Ideas
Fast Paper Writing Service, 11 Research Paper Writing IdeasFast Paper Writing Service, 11 Research Paper Writing Ideas
Fast Paper Writing Service, 11 Research Paper Writing IdeasSteven Wallach
 
Printable Lined Paper, Free Printable Stationery, Printa
Printable Lined Paper, Free Printable Stationery, PrintaPrintable Lined Paper, Free Printable Stationery, Printa
Printable Lined Paper, Free Printable Stationery, PrintaSteven Wallach
 
How To Write A Self Evaluation Essay Telegraph
How To Write A Self Evaluation Essay TelegraphHow To Write A Self Evaluation Essay Telegraph
How To Write A Self Evaluation Essay TelegraphSteven Wallach
 
George Washington Papers, Available Online, George
George Washington Papers, Available Online, GeorgeGeorge Washington Papers, Available Online, George
George Washington Papers, Available Online, GeorgeSteven Wallach
 
How To Write An Evaluation Essay Types, Steps And Format Of An
How To Write An Evaluation Essay Types, Steps And Format Of AnHow To Write An Evaluation Essay Types, Steps And Format Of An
How To Write An Evaluation Essay Types, Steps And Format Of AnSteven Wallach
 
Law Essay Writing Service Help - Theomnivore.Web.Fc2
Law Essay Writing Service Help - Theomnivore.Web.Fc2Law Essay Writing Service Help - Theomnivore.Web.Fc2
Law Essay Writing Service Help - Theomnivore.Web.Fc2Steven Wallach
 
Best Photos Of APA Format Example R. Online assignment writing service.
Best Photos Of APA Format Example R. Online assignment writing service.Best Photos Of APA Format Example R. Online assignment writing service.
Best Photos Of APA Format Example R. Online assignment writing service.Steven Wallach
 
How To Write A 6 Page Research Paper -Write My
How To Write A 6 Page Research Paper -Write MyHow To Write A 6 Page Research Paper -Write My
How To Write A 6 Page Research Paper -Write MySteven Wallach
 
My Family Essay My Family Essay In English Essay O
My Family Essay My Family Essay In English Essay OMy Family Essay My Family Essay In English Essay O
My Family Essay My Family Essay In English Essay OSteven Wallach
 
FREE 8+ Sample College Essay Templates In M
FREE 8+ Sample College Essay Templates In MFREE 8+ Sample College Essay Templates In M
FREE 8+ Sample College Essay Templates In MSteven Wallach
 
Pin On Printable Paper Fortune Tellers. Online assignment writing service.
Pin On Printable Paper Fortune Tellers. Online assignment writing service.Pin On Printable Paper Fortune Tellers. Online assignment writing service.
Pin On Printable Paper Fortune Tellers. Online assignment writing service.Steven Wallach
 
Argumentative Essay Help – Qu. Online assignment writing service.
Argumentative Essay Help – Qu. Online assignment writing service.Argumentative Essay Help – Qu. Online assignment writing service.
Argumentative Essay Help – Qu. Online assignment writing service.Steven Wallach
 
How To Write A Literary Analysis Essay - Take Us
How To Write A Literary Analysis Essay - Take UsHow To Write A Literary Analysis Essay - Take Us
How To Write A Literary Analysis Essay - Take UsSteven Wallach
 
How To Get Paid To Write Essa. Online assignment writing service.
How To Get Paid To Write Essa. Online assignment writing service.How To Get Paid To Write Essa. Online assignment writing service.
How To Get Paid To Write Essa. Online assignment writing service.Steven Wallach
 
Movie Review Example Review Essay Essay Tro
Movie Review Example  Review Essay Essay TroMovie Review Example  Review Essay Essay Tro
Movie Review Example Review Essay Essay TroSteven Wallach
 
Quoting A Poem How To Cite A Poem All You Need To Know About Citing ...
Quoting A Poem  How To Cite A Poem All You Need To Know About Citing ...Quoting A Poem  How To Cite A Poem All You Need To Know About Citing ...
Quoting A Poem How To Cite A Poem All You Need To Know About Citing ...Steven Wallach
 
Validity And Reliability Of Research Instrument Exam
Validity And Reliability Of Research Instrument ExamValidity And Reliability Of Research Instrument Exam
Validity And Reliability Of Research Instrument ExamSteven Wallach
 
Mathematics Essay Writing. Mathematics Essay Writin
Mathematics Essay Writing. Mathematics Essay WritinMathematics Essay Writing. Mathematics Essay Writin
Mathematics Essay Writing. Mathematics Essay WritinSteven Wallach
 
HttpsEssayviking. Online assignment writing service.
HttpsEssayviking. Online assignment writing service.HttpsEssayviking. Online assignment writing service.
HttpsEssayviking. Online assignment writing service.Steven Wallach
 
Science Essay - College Homework Help And Onlin
Science Essay - College Homework Help And OnlinScience Essay - College Homework Help And Onlin
Science Essay - College Homework Help And OnlinSteven Wallach
 

More from Steven Wallach (20)

Fast Paper Writing Service, 11 Research Paper Writing Ideas
Fast Paper Writing Service, 11 Research Paper Writing IdeasFast Paper Writing Service, 11 Research Paper Writing Ideas
Fast Paper Writing Service, 11 Research Paper Writing Ideas
 
Printable Lined Paper, Free Printable Stationery, Printa
Printable Lined Paper, Free Printable Stationery, PrintaPrintable Lined Paper, Free Printable Stationery, Printa
Printable Lined Paper, Free Printable Stationery, Printa
 
How To Write A Self Evaluation Essay Telegraph
How To Write A Self Evaluation Essay TelegraphHow To Write A Self Evaluation Essay Telegraph
How To Write A Self Evaluation Essay Telegraph
 
George Washington Papers, Available Online, George
George Washington Papers, Available Online, GeorgeGeorge Washington Papers, Available Online, George
George Washington Papers, Available Online, George
 
How To Write An Evaluation Essay Types, Steps And Format Of An
How To Write An Evaluation Essay Types, Steps And Format Of AnHow To Write An Evaluation Essay Types, Steps And Format Of An
How To Write An Evaluation Essay Types, Steps And Format Of An
 
Law Essay Writing Service Help - Theomnivore.Web.Fc2
Law Essay Writing Service Help - Theomnivore.Web.Fc2Law Essay Writing Service Help - Theomnivore.Web.Fc2
Law Essay Writing Service Help - Theomnivore.Web.Fc2
 
Best Photos Of APA Format Example R. Online assignment writing service.
Best Photos Of APA Format Example R. Online assignment writing service.Best Photos Of APA Format Example R. Online assignment writing service.
Best Photos Of APA Format Example R. Online assignment writing service.
 
How To Write A 6 Page Research Paper -Write My
How To Write A 6 Page Research Paper -Write MyHow To Write A 6 Page Research Paper -Write My
How To Write A 6 Page Research Paper -Write My
 
My Family Essay My Family Essay In English Essay O
My Family Essay My Family Essay In English Essay OMy Family Essay My Family Essay In English Essay O
My Family Essay My Family Essay In English Essay O
 
FREE 8+ Sample College Essay Templates In M
FREE 8+ Sample College Essay Templates In MFREE 8+ Sample College Essay Templates In M
FREE 8+ Sample College Essay Templates In M
 
Pin On Printable Paper Fortune Tellers. Online assignment writing service.
Pin On Printable Paper Fortune Tellers. Online assignment writing service.Pin On Printable Paper Fortune Tellers. Online assignment writing service.
Pin On Printable Paper Fortune Tellers. Online assignment writing service.
 
Argumentative Essay Help – Qu. Online assignment writing service.
Argumentative Essay Help – Qu. Online assignment writing service.Argumentative Essay Help – Qu. Online assignment writing service.
Argumentative Essay Help – Qu. Online assignment writing service.
 
How To Write A Literary Analysis Essay - Take Us
How To Write A Literary Analysis Essay - Take UsHow To Write A Literary Analysis Essay - Take Us
How To Write A Literary Analysis Essay - Take Us
 
How To Get Paid To Write Essa. Online assignment writing service.
How To Get Paid To Write Essa. Online assignment writing service.How To Get Paid To Write Essa. Online assignment writing service.
How To Get Paid To Write Essa. Online assignment writing service.
 
Movie Review Example Review Essay Essay Tro
Movie Review Example  Review Essay Essay TroMovie Review Example  Review Essay Essay Tro
Movie Review Example Review Essay Essay Tro
 
Quoting A Poem How To Cite A Poem All You Need To Know About Citing ...
Quoting A Poem  How To Cite A Poem All You Need To Know About Citing ...Quoting A Poem  How To Cite A Poem All You Need To Know About Citing ...
Quoting A Poem How To Cite A Poem All You Need To Know About Citing ...
 
Validity And Reliability Of Research Instrument Exam
Validity And Reliability Of Research Instrument ExamValidity And Reliability Of Research Instrument Exam
Validity And Reliability Of Research Instrument Exam
 
Mathematics Essay Writing. Mathematics Essay Writin
Mathematics Essay Writing. Mathematics Essay WritinMathematics Essay Writing. Mathematics Essay Writin
Mathematics Essay Writing. Mathematics Essay Writin
 
HttpsEssayviking. Online assignment writing service.
HttpsEssayviking. Online assignment writing service.HttpsEssayviking. Online assignment writing service.
HttpsEssayviking. Online assignment writing service.
 
Science Essay - College Homework Help And Onlin
Science Essay - College Homework Help And OnlinScience Essay - College Homework Help And Onlin
Science Essay - College Homework Help And Onlin
 

Recently uploaded

Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceSamikshaHamane
 
Capitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptxCapitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptxCapitolTechU
 
What is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPWhat is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPCeline George
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon AUnboundStockton
 
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxEPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxRaymartEstabillo3
 
Painted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaPainted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaVirag Sontakke
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxthorishapillay1
 
MARGINALIZATION (Different learners in Marginalized Group
MARGINALIZATION (Different learners in Marginalized GroupMARGINALIZATION (Different learners in Marginalized Group
MARGINALIZATION (Different learners in Marginalized GroupJonathanParaisoCruz
 
Historical philosophical, theoretical, and legal foundations of special and i...
Historical philosophical, theoretical, and legal foundations of special and i...Historical philosophical, theoretical, and legal foundations of special and i...
Historical philosophical, theoretical, and legal foundations of special and i...jaredbarbolino94
 
MICROBIOLOGY biochemical test detailed.pptx
MICROBIOLOGY biochemical test detailed.pptxMICROBIOLOGY biochemical test detailed.pptx
MICROBIOLOGY biochemical test detailed.pptxabhijeetpadhi001
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsanshu789521
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...Marc Dusseiller Dusjagr
 
Earth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatEarth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatYousafMalik24
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxOH TEIK BIN
 
Blooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docxBlooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docxUnboundStockton
 
Types of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptxTypes of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptxEyham Joco
 
CELL CYCLE Division Science 8 quarter IV.pptx
CELL CYCLE Division Science 8 quarter IV.pptxCELL CYCLE Division Science 8 quarter IV.pptx
CELL CYCLE Division Science 8 quarter IV.pptxJiesonDelaCerna
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxpboyjonauth
 

Recently uploaded (20)

Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in Pharmacovigilance
 
Capitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptxCapitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptx
 
What is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPWhat is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERP
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon A
 
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxEPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
 
Painted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaPainted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of India
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptx
 
MARGINALIZATION (Different learners in Marginalized Group
MARGINALIZATION (Different learners in Marginalized GroupMARGINALIZATION (Different learners in Marginalized Group
MARGINALIZATION (Different learners in Marginalized Group
 
Historical philosophical, theoretical, and legal foundations of special and i...
Historical philosophical, theoretical, and legal foundations of special and i...Historical philosophical, theoretical, and legal foundations of special and i...
Historical philosophical, theoretical, and legal foundations of special and i...
 
MICROBIOLOGY biochemical test detailed.pptx
MICROBIOLOGY biochemical test detailed.pptxMICROBIOLOGY biochemical test detailed.pptx
MICROBIOLOGY biochemical test detailed.pptx
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha elections
 
9953330565 Low Rate Call Girls In Rohini Delhi NCR
9953330565 Low Rate Call Girls In Rohini  Delhi NCR9953330565 Low Rate Call Girls In Rohini  Delhi NCR
9953330565 Low Rate Call Girls In Rohini Delhi NCR
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
 
Earth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatEarth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice great
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptx
 
Blooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docxBlooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docx
 
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdfTataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
 
Types of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptxTypes of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptx
 
CELL CYCLE Division Science 8 quarter IV.pptx
CELL CYCLE Division Science 8 quarter IV.pptxCELL CYCLE Division Science 8 quarter IV.pptx
CELL CYCLE Division Science 8 quarter IV.pptx
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptx
 

Arrays

  • 1. Nasima Khatun (Keya), Lecturer Model Institute Of Science & Technology
  • 2. Arrays: An array is a collection of data that holds fixed number of values of same type. The size and type of arrays cannot be changed after its declaration. For Example : If you want to store marks of 100 students you can create an array for it. float marks[100];
  • 3. Some examples where the concept of an array can be used: • List of temperatures recorded every hour in a day, or a month or a year. • List of employees in an organization. • List of products and their cost sold by a store. • Test scores of a class of students. • List of customers and their telephone numbers. • Table of daily rainfall data.
  • 4. How to declare an array in C? Syntax: data_type array_name[array_ size]; For example: float mark[5]; Here we declared an array, mark, of floating-point type and size 5. That it holds 5 floating-point values.
  • 5. Elements of an array and How to access them? You can access elements of an array by indices. Suppose you declared an array mark as above. The first element is mark[0], second element is mark[1] and so on. Few Key points: • Arrays have 0 as the first index not 1. In this example, mark[0]. • If the size of an array is n, to access the last element, (n-1) index is used. In this example, mark[4]. • Suppose the starting address of mark[0] is 2120d. Then, the next address, mark[1], will be 2124d, address of mark[2] will be 2128d and so on. Its because the size of a float is 4 bytes.
  • 6. How to Initialize an array? Its possible to initialize an array during declaration. For example: int mark[5] = {9,4,6,3,5}; Another method of initialize array during declaration int mark[ ] ={9,4,6,3,5}; Here, mark[0] is equal to 9 mark[1] is equal to 4 mark[2] is equal to 6 mark[3] is equal to 3 mark[4] is equal to 5
  • 7. Important thing to remember when working with C arrays: Suppose you declared an array of 10 elements. Lets say, int testArray[10]; You can use the array members from testArray[0] to testArray[9]. If you try to access array elements outside of its bound, lets say testArray[12], the compiler may not show any error. However, this may cause unexpected output (undefined behavior).
  • 8. Arrays are of three types: 1. One-dimensional arrays. 2. Two-dimensional arrays. 3. Multidimensional arrays.
  • 9. One-dimensional Array: A list of item can be given one variable name using only one subscript and such a variable is called a single subscripted variable or a one dimensional array. The Syntax for an array declaration is: type variable-name[size]; Example: float height[50]; int groupt[10]; char name[10];
  • 10. The type specifies the type of the element that will be contained in the array, such as int, float, or char and the size indicates the maximum number of elements that can be stored inside the array. Now as we declare a array int number[5]; Then the computer reserves five storage locations as the size o the array is 5 as show below. Reserved Space Storing values after Initialization number[0] number[0] number[1] number[1] number[2] number[2] number[3] number[3] number[4] number[4] 35 20 40 57 19
  • 11. Initialization of one dimensional array: After an array is declared, its elements must be initialized. In C programming an array can be initialized at either of the following stages: At compile time At run time
  • 12. Compile Time Initialization: The general form of initialization of array is: type array-name[size] ={list of values}; The values in the list are separated by commas. For example: int number[3] = {0,5,4}; will declare the variable ‘number’ as an array of size 3 and will assign the values to each elements. If the number of values in the list is less than the number of elements, then only that many elements will be initialized. The remaining elements will be set to zero automatically. Remember, if we have more initializers than the declared size, the compiler will produce an error.
  • 13. Run time initialization: An array can also be explicitly initialized at run time. For example consider the following segment of a c program. for(i=0;i<10;i++) { scanf(“%d”, &x[i]); } In the run time initialization of the arrays looping statements are almost compulsory. Looping statements are used to initialize the values of the arrays one by one using assignment operator or through the keyboard by the user.
  • 14. One dimensional Array Program: #include<stdio.h> void main() { int array[5]; printf(“Enter 5 numbers to store them in array n”); for(i=0;i<5;i++) { Scanf(“%d”, &array[i]); } printf(“Element in the array are: n”); For(i=0;i<5;i++) { printf(“Element stored at a[%d]=%d n”, i, array[i]); } getch(); }
  • 15. Input: Enter 5 elements in the array: 23 45 32 25 45 Output: Element in the array are: Element stored at a[0]:23 Element stored at a[0]:45 Element stored at a[0]:32 Element stored at a[0]:25 Element stored at a[0]:45
  • 16. Two-dimensional Arrays: The simplest form of multidimensional array is the two-dimensional array. A two-dimensional array is, in essence, a list of one-dimensional arrays. To declare a two-dimensional integer array of size[x][y], you would write something as follows: type arrayName[x][y]; Where type can be any valid C data type and arrayName will be a valid C identifier.
  • 17. A two-dimensional array can be considered as a table which will have x number o rows and y number o columns. A two-dimensional array a, which contains three rows and four columns can be shown as follows. Column 0 Column 1 Column 2 Column 3 Row 0 Row 1 Row 2 a[0][0] a[0][1] a[0][2] a[0][3] a[0][2] a[0][2] a[0][2] a[0][2] a[0][2] a[0][2] a[0][2] a[0][2]
  • 18. Thus, every element in the array a is identified by an element name of the form a[i][j]. where ‘a’ is the name of the array, and ‘i’ and ‘j’ are the subscripts that uniquely identify each element in ‘a’. Initializing Two-Dimensional Arrays: Multidimensional arrays may be initialized by specifying bracketed values for each row.
  • 19. Following is an array with 3 rows and each row has 4 columns. int a[3][4] = { {0,1,2,3}, {4,5,6,7}, {8,9,10,11} }; The nested braces, which indicate the intended row, are optional. The following initialization is equivalent to the previous example int a[3][4] = {0,1,2,3,4,5,6,7,8,9,10,11};
  • 20. Accessing Two-Dimensional Array Elements: An element in a two-dimensional array is accessed by using the subscripts. i.e., row index and column index of the array. For Example: int val = a[2][3]; The above statement will take the 4th element from the 3rd row of the array.
  • 21. Two-Dimensional Arrays program: #include<stdio.h> int main() { int a[5][2]={{0,0},{1,2},{2,4},{3,6},{4,8}}; int i,j; for(i=0;i<5;i++) { for(j=0;j<2;j++) { printf(“a[%d][%d] = %dn”,i,j,a[i][j]); } } return 0; }
  • 22. Output: a[0][0]: 0 a[0][1]: 0 a[1][0]: 1 a[1][1]: 2 a[2][0]: 2 a[2][1]: 4 a[3][0]: 3 a[3][1]: 6 a[4][0]: 4 a[4][1]: 8
  • 23. Multi-Dimensional Arrays: C programming language supports multidimensional Arrays. • Multi dimensional arrays have more than one subscript variables. • Multi dimensional array is also called as matrix. • Multi dimensional arrays are array o arrays.
  • 24. Declaration of Multidimensional Array A multidimensional array is declared using the following syntax Syntax: data_type array_name[d1][d2][d3][d4]....[dn]; Above statement will declare an array on N dimensions of name array_name, where each element of array is of type data_type. The maximum number of elements that can be stored in a multi dimensional array array_name is size1 X size2 X size3....sizeN. For example: char cube[50][60][30];
  • 25. Multidimensional Array program: #include<stdio.h> int main() { int r,c,a[50][50],b[50][50],sum[50][50],i,j; printf("tn Multi-dimensional array"); printf("n Enter the row matrix:"); scanf("%d",&r); printf("n Enter the col matrix:"); scanf("%d",&c); printf("n Element of A matrix"); for(i=0;i<r;++i) for(j=0;j<c;++j)
  • 26. { printf("n a[%d][%d]:",i+1,j+1); scanf("%d",&a[i][j]); } printf("n Element of B matrix"); for(i=0;i<r;++i) for(j=0;j<c;++j) { printf("n b[%d][%d]:",i+1,j+1); scanf("%d",&b[i][j]); } printf("n Addition of matrix"); for(i=0;i<r; i++)
  • 29. Output Multidimensional array Enter the row matrix:2 Enter the col matrix:2 Element of A matrix a[1][1]:1 a[1][2]:4 a[2][1]:6 a[2][2]:3
  • 30. Element of B matrix b[1][1]:1 b[1][2]:7 b[2][1]:3 b[2][2]:9 Addition of a matrix is 2 11 9 12