What will be the output of the program?
#include <stdio.h>
int main() {
 int a[] = {1, 2, 3, 4};
 int sum = 0;
 for(int i = 0; i < 4; i++) {
     sum += a[i];
 }
 printf("%d", sum);
 return 0;
}



A.  1
B. 4
C. 8
D. 10

Posted on by