Skip to content

Instantly share code, notes, and snippets.

View AugustinMauroy's full-sized avatar
🇺🇦
I Stand with Ukraine

Augustin Mauroy AugustinMauroy

🇺🇦
I Stand with Ukraine
View GitHub Profile
@AugustinMauroy
AugustinMauroy / mastermind.c
Last active February 11, 2024 09:24
mastermind in c
#include <stdlib.h>
#include <stdio.h>
#include <time.h>
#include <ctype.h>
#include <stdbool.h>
#define MAX_TRIES 10
#define IS_CHEAT_MODE 1
void flushInputBuffer(void) {