You are viewing a single comment's thread. Return to all comments →
int main(){ int n, sum=0; scanf("%d",&n);
int *arr = (int*)malloc(n * sizeof(int)); for(int i; i < n; i++){ scanf("%d", &arr[i]); sum+=arr[i]; } printf("%d",sum); free(arr);
}
Seems like cookies are disabled on this browser, please enable them to open this website
I agree to HackerRank's Terms of Service and Privacy Policy.
1D Arrays in C
You are viewing a single comment's thread. Return to all comments →
include
include
include
include
int main(){ int n, sum=0; scanf("%d",&n);
}