So I used this code in order to pass a variable in to my struct:
strcpy(s[i].orderName, Name);
and it works how I want it to. However, the rest of my variables are integers and a double and it appears there is no "intcpy()" alternative from what I have found. Is there another way to pass integer and double variables in to my struct?
Thank you.