User:Tsester

From Wikibooks, open books for an open world
Jump to navigation Jump to search

"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)