Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~80 People Reached
Favorite Forums
Favorite Tags
c x 1
Member Avatar for overRun

[CODE] typedef struct grid Grid; struct grid{ char grid[MAX_ROW][MAX_COL]; } void storeGrid(Grid *store_grid,int row, int col){ Grid *store_grid; store_grid = (Grid)malloc(sizeof(Grid)); //Grid storeGrid; //int grid[MAX_ROW][MAX_COL]; int rowNum, colNum; for(rowNum = 0; rowNum <= row; rowNum++){ for(colNum = 0;colNum < col; colNum++){ store_grid->grid[rowNum - 1][colNum] = 'a'; } } // Calls …

Member Avatar for Salem
0
80