Sage-Code Laboratory
index<--


C# Tutorial

Work in progress. Follow me on Twitter for news.

//processor directive
#include 

/* Any C program must contain a routine called main()
   This routine is actually a function that return one integer result: "0"   
*/
int main()
{
   // printf() displays the string inside quotation
   printf("Hello, World!");
   return 0; // normal termination
}

Read next: Page Name