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

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)

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)