python基础-C扩展原因写扩展库的代码包装代码编译
写python的c扩展简介使用C/C++编写Python模块扩展Python - 用C扩展编程原因添加额外的非python功能。性能瓶颈的效率提升专有源代码保密写扩展库的代码Extest.c文件包含包含要扩展的C模块,包含fac()和reverse()函数。并调试完bug。#include <stdio.h>#include <stdlib.h>#include <string.h>int fac(int n){