Example programs to solve the problems of Arrays in C,
a and b are two integers arrays each with n elements. C program to find the array c such that c[i]=a[i]+b[n-1-i]. Read more about C Programming Language .
a and b are two integers arrays each with n elements. C program to find the array c such that c[i]=a[i]+b[n-1-i]. Read more about C Programming Language .
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*********************************************************** | |
* You can use all the programs on www.c-program-example.com | |
* for personal and learning purposes. For permissions to use the | |
* programs for commercial purposes, | |
* contact [email protected] | |
* To find more C programs, do visit www.c-program-example.com | |
* and browse! | |
* | |
* Happy Coding | |
***********************************************************/ | |
/*a and b are two integers arrays each with n elements. | |
Write a program to find the array c such that c[i]=a[i]+b[n-1-i] */ | |
#include<stdio.h> | |
int main() { | |
int a[20], b[20], c[30], i, n; | |
printf("Enter the number of elements to the array:\n"); | |
scanf("%d", &n); | |
printf("\nEnter the %d elements to the array A:\n", n); | |
for (i = 0; i < n; i++) { | |
scanf("%d", &a[i]); | |
} | |
printf("\nEnter the %d elements to the array B:\n", n); | |
for (i = 0; i < n; i++) { | |
scanf("%d", &b[i]); | |
} | |
for (i = 0; i < n; i++) { | |
c[i] = a[i] + b[n - 1 - i]; | |
} | |
printf("\nC array elements are:\n"); | |
for (i = 0; i < n; i++) { | |
printf("\n"); | |
printf("%d", c[i]); | |
} | |
return 0; | |
} |
Read more Similar C Programs
Array In C
You can easily select the code by double clicking on the code area above.
To get regular updates on new C programs, you can Follow @c_program
You can discuss these programs on our Facebook Page. Start a discussion right now,
our page!
Share this program with your Facebook friends now! by liking it
(you can send this program to your friend using this button)
Like to get updates right inside your feed reader? Grab our feed!
(c) www.c-program-example.com