36
Comments
  • 8
    Heretic! Heathen!
  • 6
    Lemme guess, the startup code should be "Goodbye World"?!
  • 2
    GCC compliant assembly code?
  • 5
    Make a method called start that calls main.

    Oooooh!!
  • 0
    #include <stdio.h>

    #define decode(s,t,u,m,p,e,d) m##s##u##t
    #define start decode(a,n,i,m,a,l,s)

    int start(int argc, char* argv[])
    {
    // Your code

    return 0;
    }
Add Comment