i written small code like addition for two numbers in python.
addition.py
def add(a,b):
c=a+b
print "result is...",c
mainpgm.c
???
how to call the addition.py/add function in the C(mainpgm) program.
Already i saw some links but i am not to getting clear.
Any suggestions to call the function in c.