#include <stdio.h>

/**
 * hello-world.c
 *
 * My first C program
 * No parallel code - just a print
 * on the screen
 * you can called it like hello-world 1 3 4 fsd "et argument"
 */

int main(int argc, char *argv[])
{
  int i;
  printf("\nHello out there\n");
  printf("I have been called with %i parms\n", argc);

  for (i=0;i<argc;i++) 
  {
    printf("arg %i: %s\n",i,argv[i]);
  }
}
