fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main()
  5. <%
  6. int arr<:5:> = <% 1, 4, 1, 5, 9 %>;
  7. int i;
  8.  
  9. for( i=0; i<sizeof(arr)/sizeof(arr[0]); ++i ) <%
  10. printf( "%i\n", arr<:i:> );
  11. %>
  12.  
  13. return EXIT_SUCCESS;
  14. %>
  15.  
Success #stdin #stdout 0s 3096KB
stdin
Standard input is empty
stdout
1
4
1
5
9