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