https://github.com/brian-xu-vlt/42_cpp_piscine
[École 42 - piscine] Set of 9 C++ modules. Each module, made of multiple exercices, introduces new concepts from C++ and OOP.
https://github.com/brian-xu-vlt/42_cpp_piscine
cpp98 ecole42 piscine-cpp
Last synced: 16 days ago
JSON representation
[École 42 - piscine] Set of 9 C++ modules. Each module, made of multiple exercices, introduces new concepts from C++ and OOP.
- Host: GitHub
- URL: https://github.com/brian-xu-vlt/42_cpp_piscine
- Owner: brian-xu-vlt
- Created: 2020-12-21T07:48:45.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-02-03T07:12:29.000Z (about 5 years ago)
- Last Synced: 2025-03-16T06:12:21.913Z (11 months ago)
- Topics: cpp98, ecole42, piscine-cpp
- Language: C++
- Homepage:
- Size: 6.24 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 42_CPP_PISCINE
## CPP01 Eval
|Exercice|Command|
|:-------:|-------|
ex00|`clang++ -Werror -Wall -Wextra -std=c++98 *.cpp && ./a.out`
ex01|`clang++ -Werror -Wall -Wextra -std=c++98 *.cpp && valgrind ./a.out`
ex02 ~ ex06|`clang++ -Werror -Wall -Wextra -std=c++98 *.cpp && ./a.out`
ex07|`make f`
ex08|`clang++ -Werror -Wall -Wextra -std=c++98 *.cpp && ./a.out`
ex09|`clang++ -Werror -Wall -Wextra -std=c++98 *.cpp && ./a.out && cat ./file.log`
ex10|`clang++ -Werror -Wall -Wextra -std=c++98 *.cpp && echo -e "From pipe :\n" ; echo "coucou" \| ./a.out && echo -e "\nFrom file :\n" ; ./a.out file && echo -e "\nFrom stdin :\n" ; ./a.out`