mario::konrad
programming / C++ / sailing / nerd stuff
C Hierarchy
© / Mario Konrad

Novice

User

    #define BEGIN {
    #define END ;}

Knowledgeable User

    if(a==b)
        c = 1;
    else
        c = 0;

Expert

    c = (a==b) ? 1 : 0;

Hacker

    c = a==b;

Guru

Wizard