2008-06-29
python在c中被调用
cc -lpython2.4 py_2_c.c
cc -lpython2.4 py_2_c_str.c -o a
cc -lpython2.4 adv_issue.c -o adv_issue
#include <python2.4/Python.h>
int main( int argc , char ** argv )
{
Py_Initialize();
PyRun_SimpleString( "print 'qqqqqqqqqqqq'" );
Py_Finalize();
return 0;
}







评论排行榜