导语:
本文主要介绍了关于python怎么在c中运行程序的相关知识,包括python c语言,以及python运行快捷键这些编程知识,希望对大家有参考作用。
C语言中运行python程序
C语言使用popen/system或者直接使用系统调用级fork+exec来运行python程序也是一种混合方式。
举例如下,Python代码如下
#!/usr/bin/env python
# test.py
import sys
x = int(sys.argv[1])
print x*x
C语言代码如下
/* test.c */
#include <stdio.h>
#include <stdlib.h>
int main()
{
FILE *f;
char s[1024];
int ret;
f = popen("./test.py 99", "r");
while((ret=fread(s,1,1024,f))>0) {
fwrite(s,1,ret,stdout);
}
fclose(f);
return 0;
}
测试如下
$ gcc test.c
$ ./a.out
9801
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ 如何用python重用线程池?12/04
- ♥ 如何安装python3.508/27
- ♥ 【光棍节,秀恩爱】用Python为女朋友打造智能语音闹钟12/26
- ♥ python opencv如何旋转图片10/23
- ♥ python类属性的内存分析11/11
- ♥ python xrange 在哪个库中?10/22
内容反馈