No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

main.c 267B

12345678910111213
  1. #include <stdio.h>
  2. #include "table_symboles.h"
  3. int main() {
  4. Table_Symboles T;
  5. initialise_table(&T);
  6. add_symbole_top(&T, "toto", 0, 1);
  7. add_symbole_top(&T, "titi", 1, 0);
  8. add_symbole_bottom(&T, "titi", 0, 1);
  9. print_table(&T);
  10. return 0;
  11. }