fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. int x[10] = {0};
  5.  
  6. scanf("%d", &x[0]);
  7.  
  8. scanf("%d", &x[9]);
  9.  
  10. for (int i = 0; i < 10; i++) {
  11. printf("%d ", x[i]);
  12. }
  13. return 0;
  14. }
  15.  
Success #stdin #stdout 0.01s 5284KB
stdin
1 2
stdout
1 0 0 0 0 0 0 0 0 2