⚠️ Warning: This is a draft ⚠️

This means it might contain formatting issues, incorrect code, conceptual problems, or other severe issues.

If you want to help to improve and eventually enable this page, please fork RosettaGit's repository and open a merge request on GitHub.

== C const: a joke ==

The C const is such a joke.

void some_func(const int const * const a)
{
    ((int*)a)[0]++;
}

Not even a compiler warning! So much for "immutable".