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

https://github.com/solareenlo/42old-cpp_module_01

Old-CPP Module 01
https://github.com/solareenlo/42old-cpp_module_01

42 42born2code 42cursus cpp98 reloaded

Last synced: 4 months ago
JSON representation

Old-CPP Module 01

Awesome Lists containing this project

README

        

# 42Old-CPP_Module_01

## ex06
- switch statement

## ex05
- Array of function pointer without if statement

## ex04
- `std::getline`, `string.find`, `std::string::npos`, `string.replace`
- [クラス fstream を使用したファイル操作](https://docs.oracle.com/cd/E19957-01/805-7889/z4000016dc674/index.html)

## ex03
- Reference は,NULL が許容されない.
- Pointer は,NULL が許容される.

## ex02
- Pinter, Reference

## ex01
- `new arr[]`, `delete[] arr`

## ex00
- stack, heap に確保されたオブジェクトがメモリ上に確保されてる期間を学ぶ問題.
- heap は delete されて解放される.
- stack は,その関数が終了すると解放される.