File tree 3 files changed +51
-4
lines changed
3 files changed +51
-4
lines changed Original file line number Diff line number Diff line change 1
1
#include <stdio.h>
2
+ #include "utilities.h"
2
3
3
4
int getStrLength (char * str ) {
4
5
int length = 0 ;
@@ -9,4 +10,18 @@ int getStrLength(char* str) {
9
10
};
10
11
11
12
return length ;
12
- }
13
+ }
14
+
15
+ void printDashboard (TGame * pGame ){
16
+
17
+ int i ,j ;
18
+
19
+ for (i = 0 ;i < pGame -> rows ;i ++ ){
20
+ for (j = 0 ;j < pGame -> cols ; j ++ ){
21
+ printf ("%d " ,pGame -> dashboard [i ][j ]);
22
+ }
23
+ printf ("\n" );
24
+ }
25
+
26
+
27
+ }
Original file line number Diff line number Diff line change 1
1
#ifndef UTILITIES_H_INCLUDED
2
2
#define UTILITIES_H_INCLUDED
3
3
4
+ #define ROWS 100
5
+ #define COLS 100
6
+
7
+ typedef struct {
8
+
9
+ int dashboard [ROWS ][COLS ];
10
+ int rows ;
11
+ int cols ;
12
+ int cellAlive ;
13
+ int cellDead ;
14
+
15
+ }TGame ;
16
+
17
+
18
+
19
+
20
+
21
+
22
+
4
23
/**
5
24
* @brief Calculates the length of a string.
6
25
*
17
36
*/
18
37
int getStrLength (char * str );
19
38
39
+ void printDashboard (TGame * pGame );
40
+
20
41
#endif // UTILITIES_H_INCLUDED
Original file line number Diff line number Diff line change 4
4
#include <stdlib.h>
5
5
6
6
int main () {
7
- char str [] = "Hello World!" ;
8
- int strLength = getStrLength (str );
9
7
10
- printf ("> The length of the string \"%s\" is %d." , str , strLength );
8
+ int dashboard [ROWS ][COLS ];
9
+ int rows = ROWS ;
10
+ int cols = COLS ;
11
+ int cellAlive ;
12
+ int cellDead ;
11
13
14
+ TGame game ;
15
+
16
+ game .dashboard = dashboard ;
17
+ game .rows = rows ;
18
+ game .cols = cols ;
19
+ game .cellAlive = cellAlive ;
20
+ game .cellDead = cellDead ;
21
+
22
+ printDashboard (& game );
12
23
return 0 ;
13
24
}
You can’t perform that action at this time.
0 commit comments