This is the example of c-programming. You can edit and compile code in your own way on clicking button. If you have better solution or you found any error on code, then give us suggestion.
Full Code:
Code Explanation :
This is simple program add two single dimension array.
Before going through the explanation, You must know about following topics :
Here we have use for loop
to take input from user and also to add array.
We have use define
to declare the array size. We cannot change the SIZE
from inside the code.
#define SIZE 5
Note: Here we have declare array length 5. If you want array length more or less than 5 then change the #define SIZE 5
part in your own way.
If you want other operation like subtraction, division, multiplication then you can just the below part to specific operator.
- Addition =>
+
- Subtraction =>
+
- Multiplication =>
*
- Division =>
/
- Modulo =>
%
for(i=0; i<SIZE; i++){ sum[i]=array1[i] OPERATOR array2[i]; printf("%.1f\t", sum[i]); }
The algorithm and flowchart for this program is :
Algorithm
STEP 1 : Start STEP 2 : Declare i, SIZE = 5, array1[SIZE], array2[SIZE], sum[SIZE] STEP 3 : Repeat this steps until i < SIZE STEP 3.1 : Read on array1[i] and array2[i] STEP 3.2 : i++ STEP 4 : Repeat this steps until i < SIZE STEP 4.1 : sum[i] = array1[i] + array2[i] STEP 4.2 : Print sum[i] SETP 4.3 : i++ STEP 5 : End
Flowchart

If you got any issue the leave comment below.
Our example mainly covers following topics in any programing
- Basic Programs
- Number Programs
- Array Programs
- Matrix Programs
- Pattern Programs
- String Programs
- Tree Programs
- Singly Linked List Programs
- Circular Linked List Programs
- Doubly Linked List Programs
Here we share programs on various topics such as array strings, series area & volume of geometric figures, mathematical calculation algorithms for sorting & searching and much more.Our goal is to provide you with the perfect solution to all the programming problems you may have encountered either during interviews or in class assignments. If you don’t find what you are looking for then please drop a line in the comment section of example page or you can request from account page so that we can get it added to the below collection of programs. Happy Learning!!
If you are confident with the above programs and are able to successfully understand and run them without any problems then it is time for you to take a step further and learn comprehensive programming principles using examples and flow diagrams. Here is the link: Programming tutorial lists .
If you find this example helpful, don't forget to share it with your friends. And stay updated with us by subscribing adzetech.
If you find any code error or grammetical error then you can suggest for example improvement on clicking below button.
Check out these related examples:
- C Program to Find Factorial of a Number Using Recursion
- C Program to calculate area and perimeter of rectangle
- C Program to Check Leap Year
- C Program to Find Factorial of a Number
- C Program to Find the Sum of Natural Numbers using Recursion
- C Program to convert Decimal number to Binary
- C Program to print solid and hollow rectangle as star pattern
- C Program to Find the Length of a String
- C Program to Add Two Complex Numbers by Passing Structure to a Function
- C Program to Find Transpose of a Matrix
Leave comment