This repository contains the solutions for the Embedded Software Engineer Quiz. The quiz consists of two questions:
- Cutting a rectangular piece of paper into the largest possible squares using C.
- Analyzing a spreadsheet to find a function that maps inputs to outputs using Python.
The C program cut_squares.c cuts a rectangular piece of paper into the largest possible squares. The program takes two integers, N and M, representing the dimensions of the paper, and prints the sizes of the squares.
To compile and run the C program, use the following commands:
gcc cut_squares.c -o cut_squares
./cut_squares