标签: python-3.x
#include <stdio.h> int main() { return "hello, world"; }
上面的C代码已在一个名为hello.c
我想从Python程序中调用上面的C程序,以便打印返回消息&#34; hello,world&#34;。
是否有一个简单的Python代码示例来执行此操作?像这样的东西: import hello.c 打印(返程)