Please find error and fill the blank and send as I can copy and
paste like file or just codes if you can ?
1)
#include <stdio.h>
#include <stdlib.h>
#define Error( Str ) FatalError( Str )
#define FatalError( Str ) fprintf( stderr, "%s ", Str ), exit(
1 )
2) #include "list.h"
#include <stdlib.h>
#include "fatal.h"
/* Place in the interface file */
int Equal(ElementType x, ElementType y)
{
return x==y;
}
void Print(ElementType x)
{
printf("%2d", x);
}
List...