Skip to content

Commit ddccb73

Browse files
Definition of variables
1 parent f7ed215 commit ddccb73

File tree

3 files changed

+51
-4
lines changed

3 files changed

+51
-4
lines changed

libs/utilities.c

+16-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#include <stdio.h>
2+
#include "utilities.h"
23

34
int getStrLength(char* str) {
45
int length = 0;
@@ -9,4 +10,18 @@ int getStrLength(char* str) {
910
};
1011

1112
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+
}

libs/utilities.h

+21
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,25 @@
11
#ifndef UTILITIES_H_INCLUDED
22
#define UTILITIES_H_INCLUDED
33

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+
423
/**
524
* @brief Calculates the length of a string.
625
*
@@ -17,4 +36,6 @@
1736
*/
1837
int getStrLength(char* str);
1938

39+
void printDashboard(TGame* pGame);
40+
2041
#endif // UTILITIES_H_INCLUDED

src/main.c

+14-3
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,21 @@
44
#include <stdlib.h>
55

66
int main() {
7-
char str[] = "Hello World!";
8-
int strLength = getStrLength(str);
97

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;
1113

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);
1223
return 0;
1324
}

0 commit comments

Comments
 (0)