Indexing an `unsigned long` variable and printing the result
As a preface, this program will not necessarily run exactly like how it does in the question as it exhibits implementation-defined behavior. In addition to this, tweaking the program slightly can cause undefined behavior as well. More information on this at the end. The first line of the main function defines an unsigned long foo … Read more