1 Star 0 Fork 1

sgnah/tinyexpr

forked from SunBeau/tinyexpr 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
example3.c 722 Bytes
一键复制 编辑 原始数据 按行查看 历史
#include "tinyexpr.h"
#include <stdio.h>
/* An example of calling a C function. */
double my_sum(double a, double b) {
printf("Called C function with %f and %f.\n", a, b);
return a + b;
}
int main(int argc, char *argv[])
{
te_variable vars[] = {
{"mysum", my_sum, TE_FUNCTION2}
};
const char *expression = "mysum(5, 6)";
printf("Evaluating:\n\t%s\n", expression);
int err;
te_expr *n = te_compile(expression, vars, 1, &err);
if (n) {
const double r = te_eval(n);
printf("Result:\n\t%f\n", r);
te_free(n);
} else {
/* Show the user where the error is at. */
printf("\t%*s^\nError near here", err-1, "");
}
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/sgnah/tinyexpr.git
git@gitee.com:sgnah/tinyexpr.git
sgnah
tinyexpr
tinyexpr
master

搜索帮助