Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Question 3
  • Loading branch information
SaraAhere authored Apr 12, 2018
commit b14715072e6fb64fd7a1fc77be2a9dbcbc5d797b
17 changes: 8 additions & 9 deletions main.c
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
//NAME: AHEREZA SARAH
//REG_NO: 16/U/35
//COURSE: COMPUTER ENGINEERING II
//COURSE: COMPUTER ENGINEERING
#include <stdio.h>
#include <stdlib.h>
int i=0;
int main()
{
void AddArrays(int array1[], int array2[], int destination_array[], int size)
{
for(i=0;i<size;i++)
{
destination_array[i] = array1[i] + array2[i];

int count = 1;
while(count <= 100){
printf("%d ", count);
count += 3;

}
}

}