I've got a code where I should use some functions,one of them has a prototype like this: void writeR(RESISTOR) and the other like this: void write(RESISTOR *,int) The writeR function should be called inside the write function,but I don't know how to use it because I have a pointer type RESISTOR in all functions besides the writeR. Should I make a new value type RESISTOR without a pointer and then call that function or something else?I've got a code where I should use some functio