Skip to content

Instantly share code, notes, and snippets.

View WiseChannel's full-sized avatar
🇺🇦

Mudryi Ilya WiseChannel

🇺🇦
View GitHub Profile
@WiseChannel
WiseChannel / main.c
Created October 27, 2019 14:52 — forked from Lerbytech/main.c
Машина Тьюринга
#include<stdio.h>
#include<string.h>
const int N = 10;
// структура, описывающая результат выполениия состояния, а именно:
//
struct ReturnType
{
struct ReturnType(*ResultState)(int); // это - указатель на функцию. Указывает на следующее состояние, что следует выполнить машине.