c: remove notes about vectors
Some checks failed
Deploy to Github Pages / deploy (push) Has been cancelled

This commit is contained in:
Marcello 2025-03-24 22:28:23 +01:00
parent 46f38332aa
commit d872337de4
Signed by: m-lamonaca
SSH key fingerprint: SHA256:UYGDdKfMHJzv3yWOf3u8wnbBumU2sLt0cFlZBPFw8AM

View file

@ -316,13 +316,6 @@ string.c_str(); //reads string char by char
string.find(substring); // The zero-based index of the first character in string object that matches the requested substring or characters
```
## Vectors
```c
#include <vector>
vector<type> vector_name = {values}; //variable length array
```
## Decision Statements
### If Statements