Explore >> Select a destination


You are here

www.yodaiken.com
| | stefansf.de
2.6 parsecs away

Travel
| | In this article we examine the strict aliasing rules of the C programming language which are the basis for Type-Based Alias Analysis and show some quirks
| | raphlinus.github.io
2.6 parsecs away

Travel
| | Blog of Raph Levien.
| | blog.sigplan.org
1.9 parsecs away

Travel
| | "Undefined Behavior" often has a bad reputation. But what, really, is Undefined Behavior, and is it actually that bad? In this blog post, I will look at this topic from a PL perspective...
| | erikmcclure.com
30.9 parsecs away

Travel
| What exactly happens when you write Foo* foo = new Foo();? A lot is packed into this one statement, so lets try to break it down. First, this example is allocating new memory on the heap, but in order to understand everything that's going on, we're going to have to explain what it means to declare a variable on the stack. If you already have a good understanding of how the stack works, and how functions do cleanup before returning, feel free to skip to the new statement.