Newer
Older
langC_sp01 / extern_func / q.c
@Motoki Motoki on 15 Apr 2025 106 bytes ext_var
#include <stdio.h>
#include <math.h>

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