Such as in the beginning of the program written like this: Typedef int MazeType [5] [6]. MazeType m; The first sentence is what mean? Not that typedef but some existing variable a new name, it is defined by an array of type int Since the first sentence defines an array, so the second sentence?
CodePudding user response:
Declare MazeType is a two-dimensional array type alias Define variables m
CodePudding user response:
Typedef int MazeType [5] [6]. MazeType m;
Equivalent to int m [5] [6]
CodePudding user response:
Basically is to use substitution method, see a few times also become accustomed to,
CodePudding user response:
This syntax is too upset, general grammar books are vague