Newer
Older
langC_sp01 / extern / q.c
@Motoki Motoki 9 days ago 106 bytes extern
#include <stdio.h>
#include <math.h>

int q(float x)
{
  printf("d = %f\n", x*2);
  return floor(x*2); 
}