Dynamically creating functions in C

前端 未结 10 1685
-上瘾入骨i
-上瘾入骨i 2020-12-09 10:52

How can I dynamically create a function in C?

I try to summarize my C problem as follows:

  • I have a matrix and I want to be able to use some function

10条回答
  •  醉话见心
    2020-12-09 11:28

    If you really need to dynamically create the functions, maybe an embedded C interpreter could help. I've just googled for "embedded C interpreter" and got Ch as a result:

    http://www.softintegration.com/

    Never heard of it, so I don't know anything about it, but it seems to be worth a look.

提交回复
热议问题