https://github.com/solareenlo/42cpp-module-00
C++ practice 00 (Class etc)
https://github.com/solareenlo/42cpp-module-00
42 42born2code 42cursus 42projects cpp cpp98
Last synced: 5 months ago
JSON representation
C++ practice 00 (Class etc)
- Host: GitHub
- URL: https://github.com/solareenlo/42cpp-module-00
- Owner: solareenlo
- Created: 2021-05-21T04:04:48.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-06-08T21:49:43.000Z (about 5 years ago)
- Last Synced: 2024-12-30T09:16:03.668Z (over 1 year ago)
- Topics: 42, 42born2code, 42cursus, 42projects, cpp, cpp98
- Language: C++
- Homepage:
- Size: 181 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# cpp-module-00
### ex00
- 本当の練習
- hello world!
### ex01
- 入門編でよくやる todo リスト作成の簡易版である電話帳作成を通した C++ の書き方に慣れる練習
- [thisポインタ](http://wisdom.sakura.ne.jp/programming/cpp/cpp15.html)
## References
- [C++ Support in Clang](https://clang.llvm.org/cxx_status.html)
| Language Standard | Flag | Available in Clang? |
|--------------------------|------------|-------------------------|
| C++98 / C++03 | -std=c++98 | Yes (other than export) |
| C++11 | -std=c++11 | Clang 3.3 |
| C++14 | -std=c++14 | Clang 3.4 |
| C++17 | -std=c++17 | Clang 5 |
| C++20 | -std=c++20 | Partial |
| C++2b tentatively C++23) | -std=c++2b | Partia |
- [Email validation in C++](https://stackoverflow.com/questions/36903985/email-validation-in-c)