Skip to content

Instantly share code, notes, and snippets.

@gusteivos
gusteivos / s_tm.c
Created November 9, 2023 14:41
my Turing machine set to repeat 0 1
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define BLANK ' '
#define ONE '1'
#define ZERO '0'