从Python程序调用C程序

时间:2015-04-14 14:42:14

标签: python-3.x

#include <stdio.h>
int main()
{
   return "hello, world";
}

上面的C代码已在一个名为hello.c

的程序中编译

我想从Python程序中调用上面的C程序,以便打印返回消息&#34; hello,world&#34;。

是否有一个简单的Python代码示例来执行此操作?像这样的东西:     import hello.c     打印(返程)

0 个答案:

没有答案