SlideShare a Scribd company logo
45  
But it has disadvantage over if else statement that, in if else statement whenever
the condition is true, other condition are not checked. While in this case, all
condition are checked.
46  
Lecture Note: 11
ARRAY
Array is the collection of similar data types or collection of similar entity stored in
contiguous memory location. Array of character is a string. Each data item of an
array is called an element. And each element is unique and located in separated
memory location. Each of elements of an array share a variable but each element
having different index no. known as subscript.
An array can be a single dimensional or multi-dimensional and number of
subscripts determines its dimension. And number of subscript is always starts with
zero. One dimensional array is known as vector and two dimensional arrays are
known as matrix.
ADVANTAGES: array variable can store more than one value at a time where
other variable can store one value at a time.
Example:
int arr[100];
int mark[100];
DECLARATION OF AN ARRAY :
Its syntax is :
Data type array name
[size]; int arr[100];
int mark[100];
inta[5]={10,20,30,100,5}
The declaration of an array tells the compiler that, the data type, name of the array,
size of the array and for each element it occupies memory space. Like for int data
type, it occupies 2 bytes for each element and for float it occupies 4 byte for each
element etc. The size of the array operates the number of elements that can be
stored in an array and it may be a int constant or constant int expression.
We can represent individual array as :
47  
int ar[5];
ar[0], ar[1], ar[2], ar[3], ar[4];
Symbolic constant can also be used to specify the size of the array as:
#define SIZE 10;
INITIALIZATION OF AN ARRAY:
After declaration element of local array has garbage value. If it is global or static
array then it will be automatically initialize with zero. An explicitly it can be
initialize that
Data type array name [size] = {value1, value2, value3…}
Example:
in ar[5]={20,60,90, 100,120}
Array subscript always start from zero which is known as lower bound and
upper value is known as upper bound and the last subscript value is one
less than the size of array. Subscript can be an expression i.e. integer value.
It can be any integer, integer constant, integer variable, integer expression
or return value from functional call that yield integer value.
So if i & j are not variable then the valid subscript are
ar [i*7],ar[i*i],ar[i++],ar[3];
The array elements are standing in continuous memory locations and the
amount of storage required for hold the element depend in its size & type.
Total size in byte for 1D array is:
Total bytes=size of (data type) * size of array.
Example : if an array declared is:
int [20];
Total byte= 2 * 20 =40 byte.
48  
ACCESSING OF ARRAY ELEMENT:
/*Write a program to input values into an array and display them*/
#include<stdio.h>
int main()
{
int arr[5],i;
for(i=0;i<5;i++)
{
printf(“enter a value for arr[%d] n”,i);
scanf(“%d”,&arr[i]);
}
printf(“the array elements are: n”);
for (i=0;i<5;i++)
{
printf(“%dt”,arr[i]);
}
return 0;
}
OUTPUT
:
Enter a value for arr[0] =
12 Enter a value for arr[1]
=45 Enter a value for arr[2]
49  
=59 Enter a value for arr[3]
=98 Enter a value for arr[4]
=21
The array elements are 12 45 59 98 21
Example: From the above example value stored in an array are and occupy its
memory addresses 2000, 2002, 2004, 2006, 2008 respectively.
a[0]=12, a[1]=45, a[2]=59, a[3]=98, a[4]=21
ar[0] ar[1] ar[2] ar[3] ar[4]
12 45 59 98 21
2000 2002 2004 2006 2008
Example 2:
/* Write a program to add 10 array elements */
#include<stdio.h>
void main()
{
int i ;
int arr [10];
int sum=o;
for (i=0; i<=9; i++)
{
printf (“enter the %d element n”, i+1);
scanf (“%d”, &arr[i]);
50  
}
for (i=0; i<=9; i++)
{
sum = sum + a[i];
}
printf (“the sum of 10 array elements is %d”, sum);
}
OUTPUT:
Enter a value for arr[0] =5
Enter a value for arr[1] =10
Enter a value for arr[2] =15
Enter a value for arr[3] =20
Enter a value for arr[4]
=25 Enter a value for arr[5]
=30 Enter a value for arr[6]
=35 Enter a value for arr[7]
=40 Enter a value for arr[8]
=45 Enter a value for arr[9]
=50 Sum = 275
while initializing a single dimensional array, it is optional to specify the size of
array. If the size is omitted during initialization then the compiler assumes the
size of array equal to the number of initializers.
For example:-
int marks[]={99,78,50,45,67,89};
51  
If during the initialization of the number the initializers is less then size of array,
then all the remaining elements of array are assigned value zero .
For example:-
int marks[5]={99,78};
Here the size of the array is 5 while there are only two initializers so After this
initialization, the value of the rest elements are automatically occupied by zeros
such as
Marks[0]=99 , Marks[1]=78 , Marks[2]=0, Marks[3]=0, Marks[4]=0
Again if we initialize an array like
int array[100]={0};
Then the all the element of the array will be initialized to zero. If the number of
initializers is more than the size given in brackets then the compiler will show an
error.
For example:-
intarr[5]={1,2,3,4,5,6,7,8};//error
we cannot copy all the elements of an array to another array by simply assigning it
to the other array like, by initializing or declaring as
int a[5] ={1,2,3,4,5};
int b[5];
b=a;//not valid
(note:-here we will have to copy all the elements of array one by one, using for
loop.)
Single dimensional arrays and functions
/*program to pass array elements to a function*/
#include<stdio.h>
52  
void main()
{
int arr[10],i;
printf(“enter the array elementsn”);
for(i=0;i<10;i++)
{
scanf(“%d”,&arr[i]);
check(arr[i]);
}
}
void check(int num)
{
if(num%2=0)
{
printf(”%d is even n”,num);
}
else
{
printf(”%d is odd n”,num);
}
}
53  
Lecture Note: 12
Two dimensional arrays
Two dimensional array is known as matrix. The array declaration in both the
array i.e.in single dimensional array single subscript is used and in two
dimensional array two subscripts are is used.
Its syntax is
Data-type array name[row][column];
Or we can say 2-d array is a collection of 1-D array placed one below the other.
Total no. of elements in 2-D array is calculated as row*column
Example:-
int a[2][3];
Total no of elements=row*column is 2*3 =6
It means the matrix consist of 2 rows and 3
columns For example:-
Positions of 2-D array elements in an array are as below
00 01 02
20 2 7
8 3 15
54  
10 11 12
a [0][0] a [0][0] a [0][0] a [0][0] a [0][0] a [0][0]
20 2 7 8 3 15
2000 2002 2004 2006 2008
Accessing 2-d array /processing 2-d arrays
For processing 2-d array, we use two nested for loops. The outer for loop
corresponds to the row and the inner for loop corresponds to the column.
For
examp
le int
a[4][5]
;
for reading value:-
for(i=0;i<4;i++)
{
for(j=0;j<5;j++)
{
scanf(“%d”,&a[i][j]);
}
}
For displaying value:-
for(i=0;i<4;i++)
55  
{
for(j=0;j<5;j++)
{
printf(“%d”,a[i][j]);
}
}
Initialization of 2-d array:
2-D array can be initialized in a way similar to that of 1-D array. for example:-
int mat[4][3]={11,12,13,14,15,16,17,18,19,20,21,22};
These values are assigned to the elements row wise, so the values of
elements after this initialization are
Mat[0][0]=11, Mat[1][0]=14, Mat[2][0]=17 Mat[3][0]=20
Mat[0][1]=12, Mat[1][1]=15, Mat[2][1]=18 Mat[3][1]=21
Mat[0][2]=13, Mat[1][2]=16, Mat[2][2]=19 Mat[3][2]=22
While initializing we can group the elements row wise using inner braces.
for example:-
int mat[4][3]={{11,12,13},{14,15,16},{17,18,19},{20,21,22}};
And while initializing , it is necessary to mention the 2nd
dimension where 1st
dimension is optional.
int mat[][3];
int mat[2][3];
int mat[][];
56  
int mat[2][]; invalid
If we initialize an array as
int mat[4][3]={{11},{12,13},{14,15,16},{17}};
Then the compiler will assume its all rest value as 0,which are not defined.
Mat[0][0]=11, Mat[1][0]=12, Mat[2][0]=14, Mat[3][0]=17
Mat[0][1]=0, Mat[1][1]=13, Mat[2][1]=15 Mat[3][1]=0
Mat[0][2]=0, Mat[1][2]=0, Mat[2][2]=16, Mat[3][2]=0
In memory map whether it is 1-D or 2-D, elements are stored in one
contiguous manner.
We can also give the size of the 2-D array by using symbolic constant
Such as
#define ROW 2;
#define COLUMN 3;
int mat[ROW][COLUMN];
String
Array of character is called a string. It is always terminated by the NULL
character. String is a one dimensional array of character.
We can initialize the string as
char
name[]={‘j’,’o’,’h’,’n’,’o’};
Here each character occupies 1 byte of memory and last character is always
NULL character. Where ’o’ and 0 (zero) are not same, where ASCII value of
‘o’ is 0 and ASCII value of 0 is 48. Array elements of character array are also
57  
stored in contiguous memory allocation.
From the above we can represent as;
J o h N ‘o’
The terminating NULL is important because it is only the way that the
function that work with string can know, where string end.
String can also be initialized as;
char name[]=”John”;
Here the NULL character is not necessary and the compiler will assume it
automatically.
String constant (string literal)
A string constant is a set of character that enclosed within the double
quotes and is also called a literal. Whenever a string constant is written anywhere
in a program it is stored somewhere in a memory as an array of characters
terminated by a NULL character (‘o’).
Example – “m”
“Tajmahal”
“My age is %d and height is %fn”
The string constant itself becomes a pointer to the first character in
array. Example-char crr[20]=”Taj mahal”;
1000 1001 1002 1003 1004 1005 1006 1007 100 1009
T a j M A H a l o
It is called base address.
58  
Lecture Note: 13
String library function
There are several string library functions used to manipulate string and the
prototypes for these functions are in header file “string.h”. Several string
functions are
strlen()
This function return the length of the string. i.e. the number of characters in the
string excluding the terminating NULL character.
It accepts a single argument which is pointer to the first character of the string.For
example-
strlen(“suresh”);
It return the value 6.
In array version to calculate legnth:-
59  
int str(char str[])
{
int i=0;
while(str[i]!=’o’)
{
i++;
}
return i;
}
Example:-
#include<stdio.h>
#include<string.h>
void main()
{
char str[50];
print(”Enter a string:”);
gets(str);
printf(“Length of the string is %dn”,strlen(str));
}
Output:
60  
Enter a string: C in Depth
Length of the string is 8
strcmp()
This function is used to compare two strings. If the two string match, strcmp()
return a value 0 otherwise it return a non-zero value. It compare the strings
character by character and the comparison stops when the end of the string is
reached or the corresponding characters in the two string are not same.
strcmp(s1,s2)
return a value:
<0 when s1<s2
=0 when s1=s2
>0 when s1>s2
The exact value returned in case of dissimilar strings is not defined. We only
know that if s1<s2 then a negative value will be returned and if s1>s2 then a
positive value will be returned.
For example:
/*Stringcomparison…………………….*/
#include<stdio.h>
#include<string.h>
void main()
{
61  
char str1[10],str2[10];
printf(“Enter two strings:”);
gets(str1);
gets(str2);
if(strcmp(str1,str2)==0)
{
printf(“String are samen”);
}
else
{
printf(“String are not samen”);
}
}
strcpy()
This function is used to copying one string to another string. The function
strcpy(str1,str2) copies str2 to str1 including the NULL character. Here str2 is the
source string and str1 is the destination string.
The old content of the destination string str1 are lost. The function returns a pointer
to destination string str1.
Example:-
#include<stdio.h>
#include<string.h>
62  
void main()
{
char str1[10],str2[10];
printf(“Enter a string:”);
scanf(“%s”,str2);
strcpy(str1,str2);
printf(“First string:%sttSecond string:%sn”,str1,str2);
strcpy(str,”Delhi”);
strcpy(str2,”Bangalore”);
printf(“First string :%sttSecond string:%s”,str1,str2);
strcat()
This function is used to append a copy of a string at the end of the other string. If
the first string is “”Purva” and second string is “Belmont” then after using this
function the string becomes “PusvaBelmont”. The NULL character from str1 is
moved and str2 is added at the end of str1. The 2nd
string str2 remains unaffected.
A pointer to the first string str1 is returned by the function.
Example:-
#include<stdio.h>
#include<string.h>
void main()
{
char str1[20],str[20];
63  
printf(“Enter two strings:”);
gets(str1);
gets(str2);
strcat(str1,str2);
printf(“First string:%st second string:%sn”,str1,str2);
strcat(str1,”-one”);
printf(“Now first string is %sn”,str1);
}
Output
Enter two strings: data
Base
First string: database second string: database
` Now first string is: database-one
Ad

More Related Content

What's hot (20)

Passing an Array to a Function (ICT Programming)
Passing an Array to a Function (ICT Programming)Passing an Array to a Function (ICT Programming)
Passing an Array to a Function (ICT Programming)
Fatima Kate Tanay
 
Java Arrays
Java ArraysJava Arrays
Java Arrays
Jussi Pohjolainen
 
Arrays in Java
Arrays in JavaArrays in Java
Arrays in Java
Abhilash Nair
 
Array Introduction One-dimensional array Multidimensional array
Array Introduction One-dimensional array Multidimensional arrayArray Introduction One-dimensional array Multidimensional array
Array Introduction One-dimensional array Multidimensional array
imtiazalijoono
 
Array in Java
Array in JavaArray in Java
Array in Java
Shehrevar Davierwala
 
Unit 6. Arrays
Unit 6. ArraysUnit 6. Arrays
Unit 6. Arrays
Ashim Lamichhane
 
Arrays in C++
Arrays in C++Arrays in C++
Arrays in C++
Janpreet Singh
 
Arrays and strings in c++
Arrays and strings in c++Arrays and strings in c++
Arrays and strings in c++
GC University Faisalabad
 
1 D Arrays in C++
1 D Arrays in C++1 D Arrays in C++
1 D Arrays in C++
poonam.rwalia
 
Array
ArrayArray
Array
Anil Dutt
 
Arrays
ArraysArrays
Arrays
fahadshakeel
 
Multi dimensional array
Multi dimensional arrayMulti dimensional array
Multi dimensional array
Rajendran
 
Arrays in C language
Arrays in C languageArrays in C language
Arrays in C language
Shubham Sharma
 
COM1407: Arrays
COM1407: ArraysCOM1407: Arrays
COM1407: Arrays
Hemantha Kulathilake
 
Unit4 Slides
Unit4 SlidesUnit4 Slides
Unit4 Slides
Anurag University Hyderabad
 
Arrays in Java | Edureka
Arrays in Java | EdurekaArrays in Java | Edureka
Arrays in Java | Edureka
Edureka!
 
Arrays in C
Arrays in CArrays in C
Arrays in C
Kamruddin Nur
 
Arrays
ArraysArrays
Arrays
Chukka Nikhil Chakravarthy
 
Array assignment
Array assignmentArray assignment
Array assignment
Ahmad Kamal
 
Control statements-Computer programming
Control statements-Computer programmingControl statements-Computer programming
Control statements-Computer programming
nmahi96
 

Similar to Array&amp;string (20)

Introduction to Arrays in C
Introduction to Arrays in CIntroduction to Arrays in C
Introduction to Arrays in C
Thesis Scientist Private Limited
 
Arrays 1D and 2D , and multi dimensional
Arrays 1D and 2D , and multi dimensional Arrays 1D and 2D , and multi dimensional
Arrays 1D and 2D , and multi dimensional
Appili Vamsi Krishna
 
VIT351 Software Development VI Unit2
VIT351 Software Development VI Unit2VIT351 Software Development VI Unit2
VIT351 Software Development VI Unit2
YOGESH SINGH
 
Arrays-Computer programming
Arrays-Computer programmingArrays-Computer programming
Arrays-Computer programming
nmahi96
 
Arrays In C
Arrays In CArrays In C
Arrays In C
yndaravind
 
Session 7 En
Session 7 EnSession 7 En
Session 7 En
SamQuiDaiBo
 
Session 7 En
Session 7 EnSession 7 En
Session 7 En
guest91d2b3
 
2 arrays
2   arrays2   arrays
2 arrays
trixiacruz
 
Homework Assignment – Array Technical DocumentWrite a technical .pdf
Homework Assignment – Array Technical DocumentWrite a technical .pdfHomework Assignment – Array Technical DocumentWrite a technical .pdf
Homework Assignment – Array Technical DocumentWrite a technical .pdf
aroraopticals15
 
Chapter 13.1.7
Chapter 13.1.7Chapter 13.1.7
Chapter 13.1.7
patcha535
 
Arrays and Strings
Arrays and Strings Arrays and Strings
Arrays and Strings
Dr.Subha Krishna
 
Arrays
ArraysArrays
Arrays
AnaraAlam
 
Arrays and library functions
Arrays and library functionsArrays and library functions
Arrays and library functions
Swarup Boro
 
C (PPS)Programming for problem solving.pptx
C (PPS)Programming for problem solving.pptxC (PPS)Programming for problem solving.pptx
C (PPS)Programming for problem solving.pptx
rohinitalekar1
 
02 arrays
02 arrays02 arrays
02 arrays
Rajan Gautam
 
Unit3 C
Unit3 C Unit3 C
Unit3 C
arnold 7490
 
[ITP - Lecture 15] Arrays & its Types
[ITP - Lecture 15] Arrays & its Types[ITP - Lecture 15] Arrays & its Types
[ITP - Lecture 15] Arrays & its Types
Muhammad Hammad Waseem
 
Module 4- Arrays and Strings
Module 4- Arrays and StringsModule 4- Arrays and Strings
Module 4- Arrays and Strings
nikshaikh786
 
Array
ArrayArray
Array
hjasjhd
 
Array in C
Array in CArray in C
Array in C
adityas29
 
Arrays 1D and 2D , and multi dimensional
Arrays 1D and 2D , and multi dimensional Arrays 1D and 2D , and multi dimensional
Arrays 1D and 2D , and multi dimensional
Appili Vamsi Krishna
 
VIT351 Software Development VI Unit2
VIT351 Software Development VI Unit2VIT351 Software Development VI Unit2
VIT351 Software Development VI Unit2
YOGESH SINGH
 
Arrays-Computer programming
Arrays-Computer programmingArrays-Computer programming
Arrays-Computer programming
nmahi96
 
Homework Assignment – Array Technical DocumentWrite a technical .pdf
Homework Assignment – Array Technical DocumentWrite a technical .pdfHomework Assignment – Array Technical DocumentWrite a technical .pdf
Homework Assignment – Array Technical DocumentWrite a technical .pdf
aroraopticals15
 
Chapter 13.1.7
Chapter 13.1.7Chapter 13.1.7
Chapter 13.1.7
patcha535
 
Arrays and library functions
Arrays and library functionsArrays and library functions
Arrays and library functions
Swarup Boro
 
C (PPS)Programming for problem solving.pptx
C (PPS)Programming for problem solving.pptxC (PPS)Programming for problem solving.pptx
C (PPS)Programming for problem solving.pptx
rohinitalekar1
 
Module 4- Arrays and Strings
Module 4- Arrays and StringsModule 4- Arrays and Strings
Module 4- Arrays and Strings
nikshaikh786
 
Ad

Recently uploaded (20)

Design of Variable Depth Single-Span Post.pdf
Design of Variable Depth Single-Span Post.pdfDesign of Variable Depth Single-Span Post.pdf
Design of Variable Depth Single-Span Post.pdf
Kamel Farid
 
Mode-Wise Corridor Level Travel-Time Estimation Using Machine Learning Models
Mode-Wise Corridor Level Travel-Time Estimation Using Machine Learning ModelsMode-Wise Corridor Level Travel-Time Estimation Using Machine Learning Models
Mode-Wise Corridor Level Travel-Time Estimation Using Machine Learning Models
Journal of Soft Computing in Civil Engineering
 
Prediction of Flexural Strength of Concrete Produced by Using Pozzolanic Mate...
Prediction of Flexural Strength of Concrete Produced by Using Pozzolanic Mate...Prediction of Flexural Strength of Concrete Produced by Using Pozzolanic Mate...
Prediction of Flexural Strength of Concrete Produced by Using Pozzolanic Mate...
Journal of Soft Computing in Civil Engineering
 
Slide share PPT of SOx control technologies.pptx
Slide share PPT of SOx control technologies.pptxSlide share PPT of SOx control technologies.pptx
Slide share PPT of SOx control technologies.pptx
vvsasane
 
ATAL 6 Days Online FDP Scheme Document 2025-26.pdf
ATAL 6 Days Online FDP Scheme Document 2025-26.pdfATAL 6 Days Online FDP Scheme Document 2025-26.pdf
ATAL 6 Days Online FDP Scheme Document 2025-26.pdf
ssuserda39791
 
Frontend Architecture Diagram/Guide For Frontend Engineers
Frontend Architecture Diagram/Guide For Frontend EngineersFrontend Architecture Diagram/Guide For Frontend Engineers
Frontend Architecture Diagram/Guide For Frontend Engineers
Michael Hertzberg
 
Personal Protective Efsgfgsffquipment.ppt
Personal Protective Efsgfgsffquipment.pptPersonal Protective Efsgfgsffquipment.ppt
Personal Protective Efsgfgsffquipment.ppt
ganjangbegu579
 
Modelling of Concrete Compressive Strength Admixed with GGBFS Using Gene Expr...
Modelling of Concrete Compressive Strength Admixed with GGBFS Using Gene Expr...Modelling of Concrete Compressive Strength Admixed with GGBFS Using Gene Expr...
Modelling of Concrete Compressive Strength Admixed with GGBFS Using Gene Expr...
Journal of Soft Computing in Civil Engineering
 
How to Build a Desktop Weather Station Using ESP32 and E-ink Display
How to Build a Desktop Weather Station Using ESP32 and E-ink DisplayHow to Build a Desktop Weather Station Using ESP32 and E-ink Display
How to Build a Desktop Weather Station Using ESP32 and E-ink Display
CircuitDigest
 
ML_Unit_V_RDC_ASSOCIATION AND DIMENSIONALITY REDUCTION.pdf
ML_Unit_V_RDC_ASSOCIATION AND DIMENSIONALITY REDUCTION.pdfML_Unit_V_RDC_ASSOCIATION AND DIMENSIONALITY REDUCTION.pdf
ML_Unit_V_RDC_ASSOCIATION AND DIMENSIONALITY REDUCTION.pdf
rameshwarchintamani
 
2.3 Genetically Modified Organisms (1).ppt
2.3 Genetically Modified Organisms (1).ppt2.3 Genetically Modified Organisms (1).ppt
2.3 Genetically Modified Organisms (1).ppt
rakshaiya16
 
Evonik Overview Visiomer Specialty Methacrylates.pdf
Evonik Overview Visiomer Specialty Methacrylates.pdfEvonik Overview Visiomer Specialty Methacrylates.pdf
Evonik Overview Visiomer Specialty Methacrylates.pdf
szhang13
 
Water Industry Process Automation & Control Monthly May 2025
Water Industry Process Automation & Control Monthly May 2025Water Industry Process Automation & Control Monthly May 2025
Water Industry Process Automation & Control Monthly May 2025
Water Industry Process Automation & Control
 
Uses of drones in civil construction.pdf
Uses of drones in civil construction.pdfUses of drones in civil construction.pdf
Uses of drones in civil construction.pdf
surajsen1729
 
Little Known Ways To 3 Best sites to Buy Linkedin Accounts.pdf
Little Known Ways To 3 Best sites to Buy Linkedin Accounts.pdfLittle Known Ways To 3 Best sites to Buy Linkedin Accounts.pdf
Little Known Ways To 3 Best sites to Buy Linkedin Accounts.pdf
gori42199
 
22PCOAM16 ML Unit 3 Full notes PDF & QB.pdf
22PCOAM16 ML Unit 3 Full notes PDF & QB.pdf22PCOAM16 ML Unit 3 Full notes PDF & QB.pdf
22PCOAM16 ML Unit 3 Full notes PDF & QB.pdf
Guru Nanak Technical Institutions
 
6th International Conference on Big Data, Machine Learning and IoT (BMLI 2025)
6th International Conference on Big Data, Machine Learning and IoT (BMLI 2025)6th International Conference on Big Data, Machine Learning and IoT (BMLI 2025)
6th International Conference on Big Data, Machine Learning and IoT (BMLI 2025)
ijflsjournal087
 
twin tower attack 2001 new york city
twin  tower  attack  2001 new  york citytwin  tower  attack  2001 new  york city
twin tower attack 2001 new york city
harishreemavs
 
SICPA: Fabien Keller - background introduction
SICPA: Fabien Keller - background introductionSICPA: Fabien Keller - background introduction
SICPA: Fabien Keller - background introduction
fabienklr
 
Design Optimization of Reinforced Concrete Waffle Slab Using Genetic Algorithm
Design Optimization of Reinforced Concrete Waffle Slab Using Genetic AlgorithmDesign Optimization of Reinforced Concrete Waffle Slab Using Genetic Algorithm
Design Optimization of Reinforced Concrete Waffle Slab Using Genetic Algorithm
Journal of Soft Computing in Civil Engineering
 
Design of Variable Depth Single-Span Post.pdf
Design of Variable Depth Single-Span Post.pdfDesign of Variable Depth Single-Span Post.pdf
Design of Variable Depth Single-Span Post.pdf
Kamel Farid
 
Slide share PPT of SOx control technologies.pptx
Slide share PPT of SOx control technologies.pptxSlide share PPT of SOx control technologies.pptx
Slide share PPT of SOx control technologies.pptx
vvsasane
 
ATAL 6 Days Online FDP Scheme Document 2025-26.pdf
ATAL 6 Days Online FDP Scheme Document 2025-26.pdfATAL 6 Days Online FDP Scheme Document 2025-26.pdf
ATAL 6 Days Online FDP Scheme Document 2025-26.pdf
ssuserda39791
 
Frontend Architecture Diagram/Guide For Frontend Engineers
Frontend Architecture Diagram/Guide For Frontend EngineersFrontend Architecture Diagram/Guide For Frontend Engineers
Frontend Architecture Diagram/Guide For Frontend Engineers
Michael Hertzberg
 
Personal Protective Efsgfgsffquipment.ppt
Personal Protective Efsgfgsffquipment.pptPersonal Protective Efsgfgsffquipment.ppt
Personal Protective Efsgfgsffquipment.ppt
ganjangbegu579
 
How to Build a Desktop Weather Station Using ESP32 and E-ink Display
How to Build a Desktop Weather Station Using ESP32 and E-ink DisplayHow to Build a Desktop Weather Station Using ESP32 and E-ink Display
How to Build a Desktop Weather Station Using ESP32 and E-ink Display
CircuitDigest
 
ML_Unit_V_RDC_ASSOCIATION AND DIMENSIONALITY REDUCTION.pdf
ML_Unit_V_RDC_ASSOCIATION AND DIMENSIONALITY REDUCTION.pdfML_Unit_V_RDC_ASSOCIATION AND DIMENSIONALITY REDUCTION.pdf
ML_Unit_V_RDC_ASSOCIATION AND DIMENSIONALITY REDUCTION.pdf
rameshwarchintamani
 
2.3 Genetically Modified Organisms (1).ppt
2.3 Genetically Modified Organisms (1).ppt2.3 Genetically Modified Organisms (1).ppt
2.3 Genetically Modified Organisms (1).ppt
rakshaiya16
 
Evonik Overview Visiomer Specialty Methacrylates.pdf
Evonik Overview Visiomer Specialty Methacrylates.pdfEvonik Overview Visiomer Specialty Methacrylates.pdf
Evonik Overview Visiomer Specialty Methacrylates.pdf
szhang13
 
Uses of drones in civil construction.pdf
Uses of drones in civil construction.pdfUses of drones in civil construction.pdf
Uses of drones in civil construction.pdf
surajsen1729
 
Little Known Ways To 3 Best sites to Buy Linkedin Accounts.pdf
Little Known Ways To 3 Best sites to Buy Linkedin Accounts.pdfLittle Known Ways To 3 Best sites to Buy Linkedin Accounts.pdf
Little Known Ways To 3 Best sites to Buy Linkedin Accounts.pdf
gori42199
 
6th International Conference on Big Data, Machine Learning and IoT (BMLI 2025)
6th International Conference on Big Data, Machine Learning and IoT (BMLI 2025)6th International Conference on Big Data, Machine Learning and IoT (BMLI 2025)
6th International Conference on Big Data, Machine Learning and IoT (BMLI 2025)
ijflsjournal087
 
twin tower attack 2001 new york city
twin  tower  attack  2001 new  york citytwin  tower  attack  2001 new  york city
twin tower attack 2001 new york city
harishreemavs
 
SICPA: Fabien Keller - background introduction
SICPA: Fabien Keller - background introductionSICPA: Fabien Keller - background introduction
SICPA: Fabien Keller - background introduction
fabienklr
 
Ad

Array&amp;string

  • 1. 45   But it has disadvantage over if else statement that, in if else statement whenever the condition is true, other condition are not checked. While in this case, all condition are checked.
  • 2. 46   Lecture Note: 11 ARRAY Array is the collection of similar data types or collection of similar entity stored in contiguous memory location. Array of character is a string. Each data item of an array is called an element. And each element is unique and located in separated memory location. Each of elements of an array share a variable but each element having different index no. known as subscript. An array can be a single dimensional or multi-dimensional and number of subscripts determines its dimension. And number of subscript is always starts with zero. One dimensional array is known as vector and two dimensional arrays are known as matrix. ADVANTAGES: array variable can store more than one value at a time where other variable can store one value at a time. Example: int arr[100]; int mark[100]; DECLARATION OF AN ARRAY : Its syntax is : Data type array name [size]; int arr[100]; int mark[100]; inta[5]={10,20,30,100,5} The declaration of an array tells the compiler that, the data type, name of the array, size of the array and for each element it occupies memory space. Like for int data type, it occupies 2 bytes for each element and for float it occupies 4 byte for each element etc. The size of the array operates the number of elements that can be stored in an array and it may be a int constant or constant int expression. We can represent individual array as :
  • 3. 47   int ar[5]; ar[0], ar[1], ar[2], ar[3], ar[4]; Symbolic constant can also be used to specify the size of the array as: #define SIZE 10; INITIALIZATION OF AN ARRAY: After declaration element of local array has garbage value. If it is global or static array then it will be automatically initialize with zero. An explicitly it can be initialize that Data type array name [size] = {value1, value2, value3…} Example: in ar[5]={20,60,90, 100,120} Array subscript always start from zero which is known as lower bound and upper value is known as upper bound and the last subscript value is one less than the size of array. Subscript can be an expression i.e. integer value. It can be any integer, integer constant, integer variable, integer expression or return value from functional call that yield integer value. So if i & j are not variable then the valid subscript are ar [i*7],ar[i*i],ar[i++],ar[3]; The array elements are standing in continuous memory locations and the amount of storage required for hold the element depend in its size & type. Total size in byte for 1D array is: Total bytes=size of (data type) * size of array. Example : if an array declared is: int [20]; Total byte= 2 * 20 =40 byte.
  • 4. 48   ACCESSING OF ARRAY ELEMENT: /*Write a program to input values into an array and display them*/ #include<stdio.h> int main() { int arr[5],i; for(i=0;i<5;i++) { printf(“enter a value for arr[%d] n”,i); scanf(“%d”,&arr[i]); } printf(“the array elements are: n”); for (i=0;i<5;i++) { printf(“%dt”,arr[i]); } return 0; } OUTPUT : Enter a value for arr[0] = 12 Enter a value for arr[1] =45 Enter a value for arr[2]
  • 5. 49   =59 Enter a value for arr[3] =98 Enter a value for arr[4] =21 The array elements are 12 45 59 98 21 Example: From the above example value stored in an array are and occupy its memory addresses 2000, 2002, 2004, 2006, 2008 respectively. a[0]=12, a[1]=45, a[2]=59, a[3]=98, a[4]=21 ar[0] ar[1] ar[2] ar[3] ar[4] 12 45 59 98 21 2000 2002 2004 2006 2008 Example 2: /* Write a program to add 10 array elements */ #include<stdio.h> void main() { int i ; int arr [10]; int sum=o; for (i=0; i<=9; i++) { printf (“enter the %d element n”, i+1); scanf (“%d”, &arr[i]);
  • 6. 50   } for (i=0; i<=9; i++) { sum = sum + a[i]; } printf (“the sum of 10 array elements is %d”, sum); } OUTPUT: Enter a value for arr[0] =5 Enter a value for arr[1] =10 Enter a value for arr[2] =15 Enter a value for arr[3] =20 Enter a value for arr[4] =25 Enter a value for arr[5] =30 Enter a value for arr[6] =35 Enter a value for arr[7] =40 Enter a value for arr[8] =45 Enter a value for arr[9] =50 Sum = 275 while initializing a single dimensional array, it is optional to specify the size of array. If the size is omitted during initialization then the compiler assumes the size of array equal to the number of initializers. For example:- int marks[]={99,78,50,45,67,89};
  • 7. 51   If during the initialization of the number the initializers is less then size of array, then all the remaining elements of array are assigned value zero . For example:- int marks[5]={99,78}; Here the size of the array is 5 while there are only two initializers so After this initialization, the value of the rest elements are automatically occupied by zeros such as Marks[0]=99 , Marks[1]=78 , Marks[2]=0, Marks[3]=0, Marks[4]=0 Again if we initialize an array like int array[100]={0}; Then the all the element of the array will be initialized to zero. If the number of initializers is more than the size given in brackets then the compiler will show an error. For example:- intarr[5]={1,2,3,4,5,6,7,8};//error we cannot copy all the elements of an array to another array by simply assigning it to the other array like, by initializing or declaring as int a[5] ={1,2,3,4,5}; int b[5]; b=a;//not valid (note:-here we will have to copy all the elements of array one by one, using for loop.) Single dimensional arrays and functions /*program to pass array elements to a function*/ #include<stdio.h>
  • 8. 52   void main() { int arr[10],i; printf(“enter the array elementsn”); for(i=0;i<10;i++) { scanf(“%d”,&arr[i]); check(arr[i]); } } void check(int num) { if(num%2=0) { printf(”%d is even n”,num); } else { printf(”%d is odd n”,num); } }
  • 9. 53   Lecture Note: 12 Two dimensional arrays Two dimensional array is known as matrix. The array declaration in both the array i.e.in single dimensional array single subscript is used and in two dimensional array two subscripts are is used. Its syntax is Data-type array name[row][column]; Or we can say 2-d array is a collection of 1-D array placed one below the other. Total no. of elements in 2-D array is calculated as row*column Example:- int a[2][3]; Total no of elements=row*column is 2*3 =6 It means the matrix consist of 2 rows and 3 columns For example:- Positions of 2-D array elements in an array are as below 00 01 02 20 2 7 8 3 15
  • 10. 54   10 11 12 a [0][0] a [0][0] a [0][0] a [0][0] a [0][0] a [0][0] 20 2 7 8 3 15 2000 2002 2004 2006 2008 Accessing 2-d array /processing 2-d arrays For processing 2-d array, we use two nested for loops. The outer for loop corresponds to the row and the inner for loop corresponds to the column. For examp le int a[4][5] ; for reading value:- for(i=0;i<4;i++) { for(j=0;j<5;j++) { scanf(“%d”,&a[i][j]); } } For displaying value:- for(i=0;i<4;i++)
  • 11. 55   { for(j=0;j<5;j++) { printf(“%d”,a[i][j]); } } Initialization of 2-d array: 2-D array can be initialized in a way similar to that of 1-D array. for example:- int mat[4][3]={11,12,13,14,15,16,17,18,19,20,21,22}; These values are assigned to the elements row wise, so the values of elements after this initialization are Mat[0][0]=11, Mat[1][0]=14, Mat[2][0]=17 Mat[3][0]=20 Mat[0][1]=12, Mat[1][1]=15, Mat[2][1]=18 Mat[3][1]=21 Mat[0][2]=13, Mat[1][2]=16, Mat[2][2]=19 Mat[3][2]=22 While initializing we can group the elements row wise using inner braces. for example:- int mat[4][3]={{11,12,13},{14,15,16},{17,18,19},{20,21,22}}; And while initializing , it is necessary to mention the 2nd dimension where 1st dimension is optional. int mat[][3]; int mat[2][3]; int mat[][];
  • 12. 56   int mat[2][]; invalid If we initialize an array as int mat[4][3]={{11},{12,13},{14,15,16},{17}}; Then the compiler will assume its all rest value as 0,which are not defined. Mat[0][0]=11, Mat[1][0]=12, Mat[2][0]=14, Mat[3][0]=17 Mat[0][1]=0, Mat[1][1]=13, Mat[2][1]=15 Mat[3][1]=0 Mat[0][2]=0, Mat[1][2]=0, Mat[2][2]=16, Mat[3][2]=0 In memory map whether it is 1-D or 2-D, elements are stored in one contiguous manner. We can also give the size of the 2-D array by using symbolic constant Such as #define ROW 2; #define COLUMN 3; int mat[ROW][COLUMN]; String Array of character is called a string. It is always terminated by the NULL character. String is a one dimensional array of character. We can initialize the string as char name[]={‘j’,’o’,’h’,’n’,’o’}; Here each character occupies 1 byte of memory and last character is always NULL character. Where ’o’ and 0 (zero) are not same, where ASCII value of ‘o’ is 0 and ASCII value of 0 is 48. Array elements of character array are also
  • 13. 57   stored in contiguous memory allocation. From the above we can represent as; J o h N ‘o’ The terminating NULL is important because it is only the way that the function that work with string can know, where string end. String can also be initialized as; char name[]=”John”; Here the NULL character is not necessary and the compiler will assume it automatically. String constant (string literal) A string constant is a set of character that enclosed within the double quotes and is also called a literal. Whenever a string constant is written anywhere in a program it is stored somewhere in a memory as an array of characters terminated by a NULL character (‘o’). Example – “m” “Tajmahal” “My age is %d and height is %fn” The string constant itself becomes a pointer to the first character in array. Example-char crr[20]=”Taj mahal”; 1000 1001 1002 1003 1004 1005 1006 1007 100 1009 T a j M A H a l o It is called base address.
  • 14. 58   Lecture Note: 13 String library function There are several string library functions used to manipulate string and the prototypes for these functions are in header file “string.h”. Several string functions are strlen() This function return the length of the string. i.e. the number of characters in the string excluding the terminating NULL character. It accepts a single argument which is pointer to the first character of the string.For example- strlen(“suresh”); It return the value 6. In array version to calculate legnth:-
  • 15. 59   int str(char str[]) { int i=0; while(str[i]!=’o’) { i++; } return i; } Example:- #include<stdio.h> #include<string.h> void main() { char str[50]; print(”Enter a string:”); gets(str); printf(“Length of the string is %dn”,strlen(str)); } Output:
  • 16. 60   Enter a string: C in Depth Length of the string is 8 strcmp() This function is used to compare two strings. If the two string match, strcmp() return a value 0 otherwise it return a non-zero value. It compare the strings character by character and the comparison stops when the end of the string is reached or the corresponding characters in the two string are not same. strcmp(s1,s2) return a value: <0 when s1<s2 =0 when s1=s2 >0 when s1>s2 The exact value returned in case of dissimilar strings is not defined. We only know that if s1<s2 then a negative value will be returned and if s1>s2 then a positive value will be returned. For example: /*Stringcomparison…………………….*/ #include<stdio.h> #include<string.h> void main() {
  • 17. 61   char str1[10],str2[10]; printf(“Enter two strings:”); gets(str1); gets(str2); if(strcmp(str1,str2)==0) { printf(“String are samen”); } else { printf(“String are not samen”); } } strcpy() This function is used to copying one string to another string. The function strcpy(str1,str2) copies str2 to str1 including the NULL character. Here str2 is the source string and str1 is the destination string. The old content of the destination string str1 are lost. The function returns a pointer to destination string str1. Example:- #include<stdio.h> #include<string.h>
  • 18. 62   void main() { char str1[10],str2[10]; printf(“Enter a string:”); scanf(“%s”,str2); strcpy(str1,str2); printf(“First string:%sttSecond string:%sn”,str1,str2); strcpy(str,”Delhi”); strcpy(str2,”Bangalore”); printf(“First string :%sttSecond string:%s”,str1,str2); strcat() This function is used to append a copy of a string at the end of the other string. If the first string is “”Purva” and second string is “Belmont” then after using this function the string becomes “PusvaBelmont”. The NULL character from str1 is moved and str2 is added at the end of str1. The 2nd string str2 remains unaffected. A pointer to the first string str1 is returned by the function. Example:- #include<stdio.h> #include<string.h> void main() { char str1[20],str[20];
  • 19. 63   printf(“Enter two strings:”); gets(str1); gets(str2); strcat(str1,str2); printf(“First string:%st second string:%sn”,str1,str2); strcat(str1,”-one”); printf(“Now first string is %sn”,str1); } Output Enter two strings: data Base First string: database second string: database ` Now first string is: database-one
  翻译: