adresse book with C programming, i have problem with library i think, couldn't complite my code
- by osabri
I've divided my code in small programm 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)
{
…