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

https://github.com/bengabp/cpp_learning

Learning c++ from scratch
https://github.com/bengabp/cpp_learning

cpp gpp self-learning

Last synced: 28 days ago
JSON representation

Learning c++ from scratch

Awesome Lists containing this project

README

          

## Compiling c++ code using g++
```bash
g++ -o hello hello.cpp && ./hello
```

# Common data types
|Type | Bytes | Range |
|:-----|:-------:|:------------------|
| short| 2 | -32,768 to 32,767|
| int | 4 | -2B to 2B |
| long | 4 | -2B to 2B |
| long long | 8 | really large |
| double| 8 | -1.7E308 to 1.7E308 |
| float | 4 | -3.4E38 to 3.4E38 |
| long double | 8 | -3.4E932 to 3.4E932 |
| bool | 1 | true/false |
| char | 1 | single characters |