fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int vetorA[10] = { 0 };
  5. int vetorB[10] = { 0 };
  6. for (int i = 0; i < 10; i++) {
  7. printf("Vetor A: \n");
  8. scanf("%d", &vetorA[i]);
  9. }
  10. for (int i = 0; i < 10; i++){
  11. printf("Vetor B: \n");
  12. scanf("%d", &vetorB[i]);
  13. }
  14. }
  15.  
  16. //http://pt.stackoverflow.com/q/189939/101
Success #stdin #stdout 0s 10320KB
stdin
1
2
3
4
5
6
7
8
9
0
1
2
3
4
5
6
7
8
9
0
stdout
Vetor A: 
Vetor A: 
Vetor A: 
Vetor A: 
Vetor A: 
Vetor A: 
Vetor A: 
Vetor A: 
Vetor A: 
Vetor A: 
Vetor B: 
Vetor B: 
Vetor B: 
Vetor B: 
Vetor B: 
Vetor B: 
Vetor B: 
Vetor B: 
Vetor B: 
Vetor B: