Question: C programming: why am I getting errors ? #include #include #include #include #include typedef char AirportCode[4]; typedef struct NodeTag { AirportCode Airport; struct NodeTag *Link;

C programming: why am I getting errors ?

#include

#include

#include

#include

#include

typedef char AirportCode[4];

typedef struct NodeTag

{

AirportCode Airport;

struct NodeTag *Link;

} NodeType;

NodeType *L, *M, *N;

void DeleteFirst(NodeType **L) {

NodeType *N;

if (*L != NULL) {

N= *L;

*L =(*L)>Link;

free(N); }

}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!