Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //Aula: Vetores Part II (#23)
- //Data: 30/12/20
- //Grupo: reddit.com/r/heikoa
- #include <stdio.h>
- int main(void){
- int vetor[4] = {0,7,1,2};
- printf("= = = = Vetores = = = =\n");
- for(int i = 0; i < 4; ++i){
- printf("%i\n", vetor[i]);
- }
- return 0;
- }
- //Referencia:
- //1: https://www.youtube.com/watch?v=JSP8cFzZA_0
- //2: http://linguagemc.com.br/vetores-ou-arrays-em-linguagem-c/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement