#include "pile.h" #include #include int main (int argc, char *argv[]) { pile p, autre; long i, max; max = strtoul (argv[1], NULL, 10); p = pil_creer (); autre = pil_creer (); for (i = 0; i < max; i++) { pil_empiler (p, 0); pil_empiler (autre,0); } while (!pil_est_vide (p)) pil_depiler (p); return EXIT_SUCCESS; }