Mathc initiation/Fichiers h : c30a2


SommaireUtilise la commande "Retour en Arrière" de ton navigateur.


Installer ce fichier dans votre répertoire de travail.

x_def.h
/* --------------------------------- */
/* save as x_def.h                   */
/* --------------------------------- */
#ifndef PI 
#define PI               3.14159265359
#endif
/* ---------------------------------- */
#define  H                .0001
/* --------------------------------- */
/* --------------------------------- */
void clrscrn(void)
{
  printf("\n\n\n\n\n\n\n\n\n\n\n"
         "\n\n\n\n\n\n\n\n\n\n\n"
         "\n\n\n\n\n\n\n\n\n\n\n");
}
/* --------------------------------- */
void clrFILE(char feq[])
{
FILE *fp = fopen(feq,"w");

 fclose(fp);
}
/* -------- pause(9.E7); ----------- */
void pause(double n)
{
  while(--n){}
}
/* ---------------------------------- */
void stop(void)
{
 printf(" Press return to continue. ");
 
 getchar();
}
/* -------------- Into a while() loop - */
int stop_w(void)
{
    printf("\n Press return to continue");
    printf("\n Press X      to stop    ");
    
 return(toupper(getchar())!='X');
}
/* --------------------------------- */
/* --------------------------------- */
double factorial(
double n
)
{
   int i=1;
double f=1;

 if(n<22) 
          for(i=1;i<=n;++i) f*=i;
 else 
          f=0.;

 return(f);
}
/* --------------------------------- */
/* --------------------------------- */


Dans ce fichier il y a les utilitaires.