From 17ef44bbd255d5aa0ed75d241f4929724f4e7fa7 Mon Sep 17 00:00:00 2001 From: ooxaam <30820775+ooxaam@users.noreply.github.com> Date: Tue, 2 Oct 2018 23:51:40 +0500 Subject: [PATCH] Create README.md --- Online Programming/Add two arrays/README.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Online Programming/Add two arrays/README.md diff --git a/Online Programming/Add two arrays/README.md b/Online Programming/Add two arrays/README.md new file mode 100644 index 0000000..e91d8ae --- /dev/null +++ b/Online Programming/Add two arrays/README.md @@ -0,0 +1,5 @@ +AddTwoArrays + +This problem is related to adding 2 arrays of equal size. Program first asks user to enter size (N) of the array he wants to create. +Then program asks user to enter the values for array 1 and after that for array 2. +Finally programs sums the value of both arrays and print the result.