Address book with C programming; cannot compile my code.
- by osabri
I've divided my code into small programs so it can be easy to excute
/* ab_error.c : in case of errors following messages will
be displayed */
#include "adressbook.h"
static char *errormsg[] =
{ "",
"\nNot enough space on disk",
"\nCannot open file",
"\nCannot read file",
"\nCannot write file"
};
void check(int error)
{
switch(error)
{…