Skip to content
This repository was archived by the owner on Apr 8, 2024. It is now read-only.

Commit 8b8e9c2

Browse files
Create 1D Arrays in C.c
1 parent 1b07d39 commit 8b8e9c2

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

1D Arrays in C.c

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#include <stdio.h>
2+
#include <string.h>
3+
#include <math.h>
4+
#include <stdlib.h>
5+
6+
int main() {
7+
8+
int n,sum=0;
9+
scanf("%d",&n);
10+
11+
int ar[n];
12+
for(int i=0;i<n;i++){
13+
scanf("%d",&ar[i]);
14+
sum=sum+ar[i];
15+
16+
}
17+
printf("%d",sum);
18+
return 0;
19+
}

0 commit comments

Comments
 (0)