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.
| File | Technique |
|---|---|
| 'v1_1d_array.c' | One-dimensional array |
| 'v2_2d_array.c' | Two-dimensional array |
| 'v3_pointers.c' | Pointers |
| 'v4_structs.c' | Structures |
gcc -std=c89 v1_1d_array.c -readline.c -o solv1
./solv1See problem-statement.md for the complete specification, input format, and expected output.