please help me.
Q.
Write a function init that initialises a structure theStruct
defined as

typedef struct theStruct {
int myInt;
float myFloat;
char *myString;
}

At the end of init, myString should be completely separate from the parameter. Marks will be awarded for correctness and sensible variable and parameter names and return types. Trace the call init(7, 3.2, "Linux 4 eva");