An open API service indexing awesome lists of open source software.

https://github.com/maumneto/compprogramengineering

Repositório dos códigos na linguagem C para a disciplina de Programação
https://github.com/maumneto/compprogramengineering

c engineering exercise programming programming-language teaching-materials

Last synced: 6 months ago
JSON representation

Repositório dos códigos na linguagem C para a disciplina de Programação

Awesome Lists containing this project

README

          

[![GitHub issues](https://img.shields.io/github/issues/maumneto/programas-c)](https://github.com/maumneto/programas-c/issues)
[![GitHub forks](https://img.shields.io/github/forks/maumneto/programas-c)](https://github.com/maumneto/programas-c/network)
[![GitHub stars](https://img.shields.io/github/stars/maumneto/programas-c)](https://github.com/maumneto/programas-c/stargazers)
![Alt](https://img.shields.io/badge/version-v1.0.3-orange)
[![GitHub license](https://img.shields.io/github/license/maumneto/programas-c)](https://github.com/maumneto/programas-c/blob/master/LICENSE)
[![Build Status](https://travis-ci.com/maumneto/CompProgramEngineering.svg?branch=master)](https://travis-ci.com/maumneto/CompProgramEngineering)

## **Computational Programming for Engineering Repository**

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.


### **About Maintainer**

- Prof. Maurício Moreira Neto
- Lattes: [Link para Currículo Lattes](http://lattes.cnpq.br/7534400645876830)
- E-mail:
- website: [http://lia.ufc.br/~maumneto/](http://lia.ufc.br/~maumneto/)
- Course Website: [PCE Website](https://maumneto.github.io/pce/index.html)


### **Contents**

- 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**


### **Running C Code**

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:

```console
gcc program_name.c -o program_name
```

- To execute:

```console
./program_name
```

---

### **Exercise List 1**

This exercise list is for the topics of:

- algorithm
- C language
- data types
- input and output
- operadors
- conditional statement
- loop statement

- [Lista de exercício 1](markdown/lista-exercicio-1.md)

---

### **Exercise List 2**

This exercise list is for the topics of:

- arrays
- string
- struct
- function
- pointer

- [Lista de exercício 2](markdown/lista-exercicio-2.md)

----

## **Project 1 - CRUD Simple**

- 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


----

## **It's time to code!! Have fun!!**

![Alt](https://media.giphy.com/media/ZVik7pBtu9dNS/giphy.gif)