Advertisement
Guest User

Untitled

a guest
May 1st, 2016
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.51 KB | None | 0 0
  1. Application a = initApplication();
  2. Application b = initApplication();
  3.  
  4.  
  5. a=fonction(a,1,5);
  6. a=fonction(a,2,6);
  7. a=fonction(a,3,7);
  8. a=fonction(a,4,8);
  9.  
  10.  
  11. b=fonction(b,9,13);
  12. b=fonction(b,10,14);
  13. b=fonction(b,11,15);
  14. b=fonction(b,12,16);
  15.  
  16. printf("a : A\n");
  17. afficher(a->A);
  18. printf("a : B\n");
  19. afficher(a->B);
  20. printf("b : A\n");
  21. afficher(b->A);
  22. printf("b : B\n");
  23. afficher(b->B);
  24.  
  25. Application res ;
  26.  
  27. res = composition(a,b);
  28. printf("res : A\n");
  29. afficher(res->A);
  30. printf("res : B\n");
  31. afficher(res->B);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement