Hi
can somebody tell me what does this line means in the c programming "typedef struct terms* express;"?
thank
can somebody tell me what does this line means in the c programming "typedef struct terms* express;"?
thank
struct terms { // some fields }; // Declare a pointer of struct terms. struct terms *termptr;
struct terms { // some fields }; typedef struct terms *express; // The decleration of "termptr" is equivalent to our previous example express termptr;
typedef struct terms *express;
typedef struct terms* express;
typedef struct terms * express;
Comment