en | es

c html css js php python ruby web server


Hello World


Donwload

~> gcc -c hello_world hello_world.c

~> ./hello_world

~> Hello World


        
/* Include files */
#include "stdio.h"

/* Main function */
int main ()
{
  /* Screen output */
  printf("Hello world\n");
  return 0;
}
        
      

Copyright © DevLangs.org.