Advertisement
Guest User

main

a guest
Dec 7th, 2016
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.30 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <string.h>
  4. #include <time.h>
  5. #include "fonctions.h"
  6.  
  7. int main()
  8. {
  9. int L=5;
  10. int C=4;
  11. int **Mat;
  12.  
  13.  
  14.  
  15. printf("====TABLEAUX A DEUX DIMENSIONS====\n");
  16.  
  17. Mat=init_array (L, C);
  18. remplir_tableau(L,C,Mat);
  19. afficher_tableau(C,L,Mat);
  20.  
  21.  
  22.  
  23.     return 0;
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement