User:Tsester

Page contents not supported in other languages.
From Simple English Wikipedia, the free encyclopedia

"Oh, how lonesome is Acheron!.."

"The sorrow of the trees..."


To Cook

Other edits

Galleries

Else

Programming Notes

C programming

int main(void)
{
    auto int i;          // automatic variable
    register int j;      // use register (in CPU) if possible
    void function(void); // declaration
    void dummy(void) { } // definition
    function();          
    dummy();
    return 0;
}

void function(void)
{
    return;
}

Deletion requests

Info

  • Real Name: Spyros Papanastasiou
  • University Numner: sdi1500122 (dep. of info. and telec. at UoA)