« Mathc initiation/Fichiers h : c42a2 » : différence entre les versions

Contenu supprimé Contenu ajouté
Page créée avec « Catégorie:Mathc initiation (livre) Sommaire Installer ce fichier dans votre répertoire de travail. {{Fichier|x_def.h|largeur=70%|info=|icon=Crystal Clear mimetype source h.png}} <syntaxhighlight lang="c"> →‎---------------------------------- : →‎save as x_def.h : →‎--------------------------------- : #ifndef PI #define PI 3.14159265359 #endif /* --------------------------------... »
(Aucune différence)

Version du 30 juillet 2021 à 17:37


Sommaire


Installer ce fichier dans votre répertoire de travail.


x_def.h
/* ---------------------------------- */
/* save as x_def.h                   */
/* --------------------------------- */
#ifndef PI 
#define PI               3.14159265359
#endif
/* ---------------------------------- */
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 stop(void)
{
 printf(" Press return to continue. ");
 
 getchar();
}
/* ---------------------------------- */


Dans ce fichier il y a les utilitaires.