You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
963 B
C

/*Swapping of two arrays*/
#include<stdio.h>
void main()
{
int a[10],b[10],c[10],i;
printf("Enter First array->");
for(i=0; i<10; i++)
scanf("%d",&a[i]);
printf("\nEnter Second array->");
for(i=0; i<10; i++)
scanf("%d",&b[i]);
printf("Arrays before swapping");
printf("\nFirst array->");
for(i=0; i<10; i++)
{
printf("%d",a[i]);
}
printf("\nSecond array->");
for(i=0; i<10; i++)
{
printf("%d",b[i]);
}
for(i=0; i<10; i++)
{
//write any swapping technique
c[i]=a[i];
a[i]=b[i];
b[i]=c[i];
}
printf("\nArrays after swapping");
printf("\nFirst array->");
for(i=0; i<10; i++)
{
printf("%d",a[i]);
}
printf("\nSecond array->");
for(i=0; i<10; i++)
{
printf("%d",b[i]);
}
}