Cake is a open source compiler and static analyzer in development. (Not production quality yet.)<p>This video shows how cake can help programmers to create safe code just fixing warnings.<p><a href="https://youtu.be/X5tmkF16UMQ" rel="nofollow">https://youtu.be/X5tmkF16UMQ</a><p>We copy paste code then we add pragma safety enable<p>This enables two features ownership and nullable checks. Ownership will check if the fclose is called for instance, also checks double free etc, while nullable checks will check for de-referencing null pointers.<p>New qualifiers _Opt and _Owner are used but they can be empty macros, allowing the same code to be compiled without cake.