Module 3 (PSP)
Module 3 (PSP)
* Visit https://vtuconnect.in for more info. For any queries or questions wrt our
platform contact us at: support@vtuconnect.in
Download VTU Connect App Now From Google Play Store Go Digital, Go Green, Save Paper
C PROGRAMMING FOR PROBLEM SOLVING
MODULE III
3.1 ARRAYS
3.1.1Definition:
An array is a collection of elements of the same datatype which is stored in consecutive
memory locations.
Each value in an array is indicated by the same name that is array name and an index which
indicates the position of value in an array. The datatype of an array can be int, float, double, char
and string.
Depending upon the length of the array, it is divided into 2 types. They are:
3. Partial Initialization:
Ex: int a[5]={10,20};
a[0] a[1] a[2] a[3] a[4]
a 10 20
4. Initialization with zero:
Ex: int a[5]={0};
a[0] a[1] a[2] a[3] a[4]
a 0 0 0 0 0
To print the elements of array, individual elements (or) all the elements of an array can be
done using printf statement.
Ex:
#include<stdio.h>
main()
{
int a[10], n, i;
printf(“ Enter the size of an array”);
scanf(“%d”,&n);
printf(“ Enter the elements of an array”);
for(i=0;i<n;i++)
{
scanf(“%d”, &a[i]);
}
printf(“ The array elements are:”);
for(i=0;i<n;i++)
{
printf(“%d\t”, &a[i]);
}
}
Output:
Enter the size of an array
5
Enter the elements of an array
1 2 3 4 5
The array elements are:
1 2 3 4 5
a[1][1]=40;
10 20
30 40
To print the elements of array, individual elements (or) all the elements of an array can be
done using printf statement.
Ex:
To access individual element,
printf(“ %d”,a[0][1]);
#include<stdio.h>
main()
{
int a[10][10],m, j, n, i;
printf(“ Enter the no of rows and columns of an array”);
scanf(“%d%d”,&m, &n);
printf(“ Enter the elements of an array”);
for(i=0;i<m;i++)
{
for(j=0;j<n;j++)
{
scanf(“%d”, &a[i][j]);
}
}
printf(“ The array elements are:”);
for(i=0;i<m;i++)
{
for(j=0;j<n;j++)
{
printf(“%d\t”, a[i][j]);
}
printf(“\n”);
}
}
Output:
Enter the no of rows and columns of an array
2 2
Enter the elements of an array
1 2 3 4
The array elements are:
1 2
3 4
3.4 STRINGS
Definition:
Strings are defined as an array of characters where it is terminated with a special character
‘\0’ (NULL Character).
Declaration:
char string_name[length];
where: char is the datatype of strings, string_name represents the name of the string, and
length represents the length of the string.
Initialization:
%s format specifier is used for strings input/output operations. “&” symbol is optional for
reading string data in scanf() statement.
Example :
#include<stdio.h>
#include<string.h>
void main()
{
Char name[10]; //string declaration
printf(“enter your name \n”):
scanf(“%s”, name); //reading string data using scanf()
%s format specifier is not used for strings input/output operation. & symbol is not used for
reading string data in gets() statement.
Example :
#include<stdio.h>
#include<string.h>
void main()
{
Char name[10]; //string declaration
puts(“enter your name \n”):
gets(name); //reading string data using gets()
puts(name); // printing string data using puts
}
3.4.1 String Manipulation functions/ String operations:
Some of the functions using in string library are:
1. String length:
strlen() function is used to find out the length of the string in terms of number of charatcers
in it.
Syntax: strlen(string_data);
Example:
#include<stdio.h>
main()
{
char s[10]= “HELLO”;
int len = strlen(s);
printf(“ String Length is %d”,len):
}
Output: String Length is 5
2. String concatenation:
Strcat() function is used to combine 2 strings. One string will be attached to another string.
Syntax: strcat(string1,string2);
Example:
#include<stdio.h>
main()
{
char s1[20],s2[20];
int k;
printf(“Enter string 1”);
scanf(“%s”,s1);
printf(“Enter string 2”);
scanf(“%s”,s2);
strcat(s1,s2);
printf(“Concatenated String is %s”, s1);
}
Output:
Enter string 1: Bangalore
Enter string 2: City
Concatenated String is BangaloreCity
3. String compare:
Strcmp() function is used to compare 2 strings. Every character of one string is compared
with corresponding position of another string.
Syntax: strcmp(string1,string2);
Note:
If the function returns zero (0), then strings are equal.
If the string returns value greater than zero (0), then first string is greater.
If the string returns value lesser than zero (0), then second string is greater.
Example:
#include<stdio.h>
main()
{
char s1[20],s2[20];
int k;
printf(“Enter string 1”);
scanf(“%s”,s1);
printf(“Enter string 2”);
scanf(“%s”,s2);
k= strcmp(s1,s2);
if(k==0)
printf(“Strings are equal”);
else if(k>0)
printf(“string 1 is greater”);
else
printf(“string 2 is greater”);
}
Output:
Enter string 1: BIT
Enter string 2: BIT
Strings are equal
4. String copy:
strcpy( ) function is used to copy content of one string to another.
Syntax: strcpy(destination_string, source_string):
Example:
#include<stdio.h>
main()
{
Char s1[10]=”BIT”,s2[10];
strcpy(s2,s1);
printf(“ The string s2 is %s”, s2);
}
5. String reverse:
Strrev( ) function is used to reverse the string.
Syntax: strrev(string);
Example:
#include<stdio.h>
main()
{
char s1[10]=”BIT”,s2[10];
s2=strrev(s1);
printf(“s2=%s”,s2);
}
Output: TIB
6. String lower:
Strlwr( ) function is used to convert the upper case alphabets to lower case alphabets.
Syntax: strlwr(string);
Example: Strlwr(“BIT”); // Output: bit
7. String Upper
Strupr( ) function is used to convert the lower case alphabets to upper case alphabets.
Syntax: strupr(string);
Example: Strupr(“bit”); // Output: BIT
9. String set:
Strset( ) function is used to replace the string with a specific character.
Syntax: strset(string, character);
Example: Strset(“BIT”,*); // Output: ***
Example: Consider the number 20 is searched by comparing with each element of the array
sequentially starting from 10 until we find 20 in the given array (or) until it reaches end of the
array if the element is not found.
Algorithm:
Step 1: Start
Step 2: [Input the number of elements]
read n
Step 3: initialize found 0
Step 4: [ Input the array items]
for i 0 to n-1
read a[i]
end for
Step 4: [Input the key]
read key
Step 5: [Compare key element with array element sequentially]
for i=0 to n
if key = a[i]
print “Key found”
set found 1
end if
end for
Step 6: if found = 0
print “Element not found”
end if
Step 7: Stop
Program:
#include<stdio.h>
#include<string.h>
void main()
{
int a[10],key,i,found=0;
printf(“enter the number of elements to read,n=”);
scanf(“%d”,&n);
printf(“enter the elements in ascending order\n”);
for(i=0;i<n;i++)
scanf(“%d”,&a[i]);
printf(“enter the name to search:”);
scanf(“%d”,&key);
for(i=0;i<n;i++)
{
if(key==a[i])
{
printf(“Element found at %d”,i+1);
found=1;
exit(0);
}
}
if(found==0)
{
printf(“Element not found”):
}
}
Step 1: Start
Step 2: [Input the number of elements]
read n
Step 3: [ Input the array items]
for i 0 to n-1
read a[i]
end for
Step 4: [Input the key]
read key
Step 5: [Initialize low to zero and high to last element]
low 0
high n-1
Step 6: [Calculate mid element and compare with key]
while (low<=high && !found)
mid (low+high)/2
if a[mid] = key then
goto step 7
else if a[mid]>key then
high mid-1
else
low mid+1
end if
end while
Step 7: [Print a message for successful or not successful]
if found ==1 then
print “search successful, print in mid+1 location”
else
print “search unsuccessful key not present in the list”
end if
Step 8: Stop
Program:
#include<stdio.h>
#include<string.h>
void main()
{
int a[10],key,n,i,low,high,mid,found=0;
printf(“enter the number of elements to read,n=”);
scanf(“%d”,&n);
printf(“enter the elements in ascending order\n”);
for(i=0;i<n;i++)
scanf(“%d”,&a[i]);
printf(“enter the name to search:”);
scanf(“%d”,&key);
low=0;
high=n-1;
while(low<=high&&!found)
{
mid=(low+high)/2;
if(a[mid]==key)
found=1;
else if(a[mid]<key)
low=mid+1;
else
high=mid-1;
}
if(found==1)
printf(“Key found in position:%d”,mid+1);
else
printf(“Key not found”);
}
Step 1: Start
Step 2: [Input the number of elements]
read n
Step 3: [Input unsorted elements in array]
for i0 to n-1
read a[i]
Step 4: [Sort the elements in ascending order]
for i 0 to n-1
for j0 to n-i
Algorithm:
Step1: Start
Step2: Read n
Step3: read array elements to be sorted
for i=1 to n
read a[i]
end for
Step4: Sort the elements
for i=0 to n-1
min=i
find minimum value starting from index i+1
for j=i+1 to n
if a[j] is less than a[min], then
min=j
end if
end for
swap a[i] and a[min]
end for
Step5: Print Sorted elements
for i=1 to n
print a[i]
Step6: Stop
Program:
#include<stdio.h>
main()
{
int i,j,min,n,a[10],temp;
printf(“Enter the number of elements”);
scanf(“%d”,&n);
printf(“Enter the array elements”);
for(i=0;i<n;i++)
{
scanf(“%d”,&a[i]);
}
for(i=0;i<n-1;i++)
{
min=1;
/*finding min value starting from index i+1*/
for(j=i+1;j<n;j++)
{
if(a[j]<a[min])
{
min=j;
}
}
/* Swapping first element of unsorted part with minimum*/
temp=a[i];
a[i]=a[min];
a[min]=temp;
}
/* Printing sorted array using selection sort */
printf(“Elements in sorted order”);
for(i=0;i<n;i++)
{
printf(“%d\t”,a[i]);
}
}