fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4.  
  5. int i=0;
  6. int array[ 10 ];
  7.  
  8. while(i<10)
  9. {
  10. int a;
  11. scanf("%d",&a);
  12. array[ i ] = a;
  13. i++;
  14. }
  15.  
  16. return 0;
  17. }
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty