c - Explanation of a function -
could can tell following code does? write or read on table ? function in program. trying understand program.if reply explanation great help.
typedef struct { short a[16]; } pre25g; pre25g pre25g_g[4] = { 1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0, /*1*/ 1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0, /*2*/ 1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0, /*3*/ 1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0 /*4*/ };
this not function. first part typedef
defines structure. , latter definition of initialized array of structure type pre25g
.
Comments
Post a Comment