i would like to pass the integer value in the module. following is my C code;
int i;
SYMBOL di;
di = symbol_CreateStandardVariable();
and the module is
t = term_Create(Door,list_Cons(term_Create(di, list_Nil()), list_List(term_Create(di, list_Nil()))));
is there any way so that i can pass the value like d1, d2 , d3 ... iteratively and pass in the module in place of di?
Thanks in advance.