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.
- Host: GitHub
- URL: https://github.com/maxtermax/practice-cpp
- Owner: Maxtermax
- Created: 2016-10-28T04:38:59.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-11-21T21:10:53.000Z (over 9 years ago)
- Last Synced: 2025-07-10T03:23:20.044Z (12 months ago)
- Language: C++
- Homepage:
- Size: 28.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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`