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

https://github.com/maxtermax/practice-cpp

Practice for scratch, basic prototiping of utils for manipulate array.
https://github.com/maxtermax/practice-cpp

Last synced: 11 months ago
JSON representation

Practice for scratch, basic prototiping of utils for manipulate array.

Awesome Lists containing this project

README

          

# Practice C++
Practice for scratch, basic prototiping of utils for manipulate array.
## Require
g++ compiler

## Compiling
`g++ main.cpp -o main.exe`

## Usage Example
Testing multiples functions that do operations on the array and return information like:
```
./main.exe

90 : maximum
1: minimum
1 : first element
90 : last element
Is empty ? : 0

```
or more short

`g++ main.cpp -o main.exe && ./main.exe`