//Importiere wichtige Bibliotheken #include #include //Definiere Feldgröße #define ROWS 6 #define COLS 7 // Definiere Farben #define RESET_COLOR "\033[0m" #define BLACK "\033[0;30m" #define RED "\033[0;31m" #define GREEN "\033[0;32m" #define YELLOW "\033[0;33m" #define BLUE "\033[0;34m" #define MAGENTA "\033[0;35m" #define CYAN "\033[0;36m" #define WHITE "\033[0;37m" //Funktionsprototyp für initializeBoard void initializeBoard(char board[ROWS][COLS]); //Funktionsprototyp für printBoard void printBoard(char board[ROWS][COLS]);