d3dx939dll

Aula25 - Matrizes

Jan 1st, 2021 (edited)
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.38 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main(void){
  4.     //minha matriz kkkk
  5.     int matriz[3][3] = {1,2,3,4,5,6,7,8,9};
  6.  
  7.  
  8.     //intro foda
  9.     printf("- - - Matrizes:\n");
  10.     printf("%i\n", matriz[2][0]);
  11.  
  12.     return 0;
  13. }
  14.  
  15. // Aula: Matriz (#25)
  16. // Data: 01/01/2021
  17. // Grupo: reddit.com/r/heikoa
  18.  
  19. // Referencia:
  20.  
  21. // Video: www.youtube.com/watch?v=jtnLR8pA4YU&t=77s
  22. // Site: linguagemc.com.br/matriz-em-c/
Add Comment
Please, Sign In to add comment