study_public/asm2/example_c_asm_and_coproc/main.c
2020-12-03 15:56:26 +03:00

19 lines
249 B
C

/*
Copyright 2020 KoroLion (github.com/KoroLion)
*/
#include <stdio.h>
float sum(float a, float b);
float fx(float x);
int main() {
float c = sum(1.5, 2.1);
printf("%f\n", c);
float y = fx(2);
printf("%f\n", y);
return 0;
}