Subversion Repositories test

Rev

Rev 8 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
8 rozier 1
//hello.c
2
 
3
#include <stdio.h>
4
#include <stdlib.h>
5
 
6
int main()
7
{
15 rozier 8
  printf("Bonjour, tout le monde !\n");
8 rozier 9
 
10
  return 0;
11
}
12