UNIVERSITY OF WEST ATTICA
SCHOOL OF ENGINEERING
DEPARTMENT OF COMPUTER ENGINEERING AND INFORMATICS
University of West Attica · Department of Computer Engineering and Informatics
Computer Programming
Vasileios Evangelos Athanasiou
Student ID: 19390005
Supervision
Supervisor: Nikolaos Vassilas, Professor
Co-supervisor: Georgios Meletiou, Laboratory Teaching Staff
Athens, November 2021
This guide explains how to set up, build, and run the project on your local machine.
-
C Compiler
- Recommended:
- GCC (Linux / macOS / Windows via MinGW or WSL)
- Recommended:
-
Text Editor or IDE
- Visual Studio Code
(Recommended) - Code::Blocks
- Dev-C++
- CLion
- Any plain text editor
- Visual Studio Code
- Windows
- Linux
(Recommended) - macOS
Clone the repository to your local machine:
git clone https://github.com/Computer-Programming-aka-Uniwa/Control.git- Open the repository URL in your browser
- Click Code → Download ZIP
- Extract the ZIP file to a local directory
cd Control/srcgcc if.c -o if
gcc if1.c -o if1
gcc switch.c -o switch
gcc MaxInteger.c -o MaxInteger
gcc 2ndGradeEquation.c -o 2ndGradeEquation -lm
-lmis required to link the math library
Linux / macOS
./if
./if1
./switch
./MaxInteger
./2ndGradeEquationWindows
if.exe
if1.exe
switch.exe
MaxInteger.exe
2ndGradeEquation.exe- Navigate to the
docs/directory - Open the report corresponding to your preferred language:
- English:
Control-Structures.pdf - Greek:
Δομές-Ελέγχου.pdf
- English:

