This repository goal is to provide support for students of the Computational Programming for Engineering course during the development of their programs using C language. This repository contains the codes of the problems presented in this course.
- Prof. Maurício Moreira Neto
- Lattes: Link para Currículo Lattes
- E-mail: maumneto@gmail.com
- website: http://lia.ufc.br/~maumneto/
- Course Website: PCE Website
-
Each folder in this repository has a set of C files referring to the questions presented in the class.
-
The solution of these questions is fundamental to fixing the content taught (besides it's fun 🤓)
Remember:
''I hate programming, I hate programming, I hate programming!!
Oh, it work!!
I love programming so much...''
-- Any programming student
To running codes just open the terminal (if it is in windows you'll use the prompt or cmd) and change the directory where the code you want to run is
Within the directory target execute:
gcc program_name.c -o program_name
- To execute:
./program_name
This exercise list is for the topics of:
-
algorithm
-
C language
-
data types
-
input and output
-
operadors
-
conditional statement
-
loop statement
This exercise list is for the topics of:
-
arrays
-
string
-
struct
-
function
-
pointer
-
This project aims to develop a simple CRUD.
-
This project serves to train the basic elements of the C language.
IMPORTANT:
-
This project has only a single file
-
Subsequently, it is advisable to divide the project into multiple files with independent structures
-
Another feature of this project is that all data is cached, that is, it does not have data persistence and does not address the content of files
-