https://gitorious.org/ocamlp3l/ocamlp3l_cvs.git
Raw File
Tip revision: ad58ae426e7e9200530d18bf439d02657503426c authored by fclement on 23 November 2010, 11:33:06 UTC
Ignore all generated files.
Tip revision: ad58ae4
square.c
#include <stdio.h>

int main()
{
  int i;
  while (1) {
    scanf("%d",&i);
    printf("%d\n",i*i);
	fflush(NULL);
  }
  exit(0);
}
back to top