标签: python c python-3.x lib combiners
我想用Python导入一个C文件并运行它。 想象一下我的C代码是:
draw_card
如何使用Python导入C代码:
#include <stdio.h> void sum(int num1, int num2){ return num1 + num2; int main(){ sum(1,2) }
这不起作用,如何使它起作用。
我在Google中找到了C ++,但是我不想要C ++,我需要用C来实现。