Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 

Repository files navigation

c-maze-solver

This repository contains several implementations of a simple 10x10 maze solver in C.

The purpose of the project is to solve the same problem using different C programming techniques.

Implementations

File Technique
'v1_1d_array.c' One-dimensional array
'v2_2d_array.c' Two-dimensional array
'v3_pointers.c' Pointers
'v4_structs.c' Structures

Build

gcc -std=c89 v1_1d_array.c -readline.c -o solv1
./solv1

See problem-statement.md for the complete specification, input format, and expected output.

About

Maze solver using different C programming techniques, arrays, pointers, structures and ...

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors