Here\'s what I\'m trying to do:
#include #include struct myStruct { int myVar; } struct myStruct myBigList = null; vo
Shouldn't the following statement
myArray[0].myVar = '42';
be this?
(*myArray)[0].myVar = 42;
myvar is an integer.