Mathc initiation/Fichiers h : x 17b05


Sommaire


Installer et compiler ces fichiers dans votre répertoire de travail.

b05.c
/* ---------------------------------- */
/*  Save as :   b05.c                 */
/* ---------------------------------- */
#include "x_ahfile.h"
/* ---------------------------------- */
int main(void)
{
Set  A;
Set  B;
Set  A_union_C;

int  i;

  create_SetI(&A);
  create_SetI(&B);
  create_SetI(&A_union_C);

  clrscrn();
  
  for(i=1; i<=5; i++) insert_EI(&A,i);
  for(i=3; i<=9; i++) insert_EI(&B,i);
  
  p_SetI(&A,"A");
  p_SetI(&B,"B");

  union_SI(&A,&B,&A_union_C);
  p_SetI(&A_union_C,"A_union_C");
  stop();

  erase_SetI(&A_union_C);
  erase_SetI(&B);
  erase_SetI(&A);

  return 0;
}


Dans cet exemple nous allons introduire l'opérateur union.

Exemple de sortie écran :

 A = {5,4,3,2,1}

 B = {9,8,7,6,5,4,3}

 A_union_C = {6,7,8,9,1,2,3,4,5}

 Press return to continue.