/* * mem_sequence.c / ver 0x01 | (C)opyleft 2008 by oozie | http://blog.ooz.ie/ * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ * Lists memory areas and their location in descending order. * * This program declares example variables in different memory locations, gets * their addresses, sorts them and prints a list in descending order. * * The program is considered […]
Category Archives: Main
Hello World
Wednesday, May 9, 2012
#include <stdio.h> int main(void) { printf(“\x48\x65\x6c\x6c\x6f\x20\x57\x6f\x72\x6c\x64\x0a”); }