L
lovecreatesbea...
K&R2 sec 8.7 reads:
union header{
/*...*/
};
typedef union header Header;
/*...*/
Header *morecore(unsigned); /*?*/
What does the line with a question mark in the end comment mean? Is it
a kind of initialization syntax?
union header{
/*...*/
};
typedef union header Header;
/*...*/
Header *morecore(unsigned); /*?*/
What does the line with a question mark in the end comment mean? Is it
a kind of initialization syntax?