Difference between revisions of "KineKlubEdition7"

From Tmplab
(New page: Attention, veuillez-vous munir de votre interpréteur préféré ;) #include <stdio.h> int main(int argc, char *argv[]) { char what[] = "KineKlub #7 - Code"; char whe...)
 
 
Line 6: Line 6:
  
 
int main(int argc, char *argv[])
 
int main(int argc, char *argv[])
 +
 
{
 
{
 
     char what[] =
 
     char what[] =
 
         "KineKlub #7 - Code";
 
         "KineKlub #7 - Code";
     char when[] =  
+
     char when[] =
 
         "Le 12/03/2010 à partir de 20h jusqu'à épuisement de tous les participants";
 
         "Le 12/03/2010 à partir de 20h jusqu'à épuisement de tous les participants";
 
     char where[] =
 
     char where[] =
 
         "6 rue des Entrepots 93400 Saint-Ouen, portail vert, Métro : Porte de Clignancourt";
 
         "6 rue des Entrepots 93400 Saint-Ouen, portail vert, Métro : Porte de Clignancourt";
 
     char who[] =
 
     char who[] =
         "dermiste, endrazine, itzhack, iv, kiniou, milo, {Nico}, urs";
+
         "dermiste, endrazine, itzhack, iv, kiniou, Maurin, milo, {Nico}, urs";
 
     char agenda[] =
 
     char agenda[] =
 
         "Introduction à la programmation, les différents langages de programmation (C, Shell, Perl, Assembler, Brainfuck, Whitespace…)\n"
 
         "Introduction à la programmation, les différents langages de programmation (C, Shell, Perl, Assembler, Brainfuck, Whitespace…)\n"
Line 26: Line 27:
  
 
     printf("Quoi  : %s\n", what);
 
     printf("Quoi  : %s\n", what);
     printf("Quand : %s\n",when);
+
     printf("Quand : %s\n", when);
     printf("Où    : %s\n",where);
+
     printf("Où    : %s\n", where);
     printf("Avec  : %s\n",who);
+
     printf("Avec  : %s\n", who);
 
     printf("\n");
 
     printf("\n");
 
     printf("Programme :\n%s\n", agenda);
 
     printf("Programme :\n%s\n", agenda);
 
     printf("\n");
 
     printf("\n");
     printf("Venez (nombreux) avec coussins, vins, fromage & fruits...et tête reposée :)\n\n");
+
     printf("Venez (nombreux) avec coussins, vins, fromage & fruits...et tête reposée \n\n");
 +
 
 
}
 
}
 
 
 
A vendredi 12 !!
 
 
The KinéKlub's team
 

Latest revision as of 18:15, 9 March 2010

Attention, veuillez-vous munir de votre interpréteur préféré  ;)


  1. include <stdio.h>

int main(int argc, char *argv[])

{

   char what[] =
       "KineKlub #7 - Code";
   char when[] =
       "Le 12/03/2010 à partir de 20h jusqu'à épuisement de tous les participants";
   char where[] =
       "6 rue des Entrepots 93400 Saint-Ouen, portail vert, Métro : Porte de Clignancourt";
   char who[] =
       "dermiste, endrazine, itzhack, iv, kiniou, Maurin, milo, {Nico}, urs";
   char agenda[] =
       "Introduction à la programmation, les différents langages de programmation (C, Shell, Perl, Assembler, Brainfuck, Whitespace…)\n"
       "Les regex ou expressions régulières\n"
       "Le processus de création ou le quotidien du codeur\n"
       "La machine de Turing\n"
       "Le Ken thomson Hack\n"
       "Le lambda calcul\n"
       "L'isomorphisme de Curry Howards\n"
       "Le live coding (Fluxius)\n";
   printf("Quoi  : %s\n", what);
   printf("Quand : %s\n", when);
   printf("Où    : %s\n", where);
   printf("Avec  : %s\n", who);
   printf("\n");
   printf("Programme :\n%s\n", agenda);
   printf("\n");
   printf("Venez (nombreux) avec coussins, vins, fromage & fruits...et tête reposée  \n\n");

}