fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. int angka[] = {2, 4, 6, 8, 9, 10};
  5. int i;
  6.  
  7. for(i = 0; i < 6; i++) {
  8. printf("%d\n", angka[i]);
  9. }
  10.  
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0.01s 5320KB
stdin
Standard input is empty
stdout
2
4
6
8
9
10