Advertisement
d3dx939dll

Aula23 - Vetores II

Dec 29th, 2020
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.39 KB | None | 0 0
  1. //Aula: Vetores Part II (#23)
  2. //Data: 30/12/20
  3. //Grupo: reddit.com/r/heikoa
  4.  
  5. #include <stdio.h>
  6. int main(void){
  7.    
  8.     int vetor[4] = {0,7,1,2};
  9.  
  10.     printf("= = = = Vetores = = = =\n");
  11.     for(int i = 0; i < 4; ++i){
  12.         printf("%i\n", vetor[i]);
  13.     }
  14.     return 0;
  15. }
  16.  
  17. //Referencia:
  18. //1: https://www.youtube.com/watch?v=JSP8cFzZA_0
  19. //2: http://linguagemc.com.br/vetores-ou-arrays-em-linguagem-c/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement