Subversion Repositories test

Rev

Go to most recent revision | Details | 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
{
8
  printf("Hello, world!!\n");
9
 
10
  return 0;
11
}
12