I'm trying to initialize a somewhat complex array of structs in C, and I'm running into some problems. I want to initialize an array of structs; each struct consists of a few fields, including one ...
I'm trying to check whether a Point has been initialised. Hmmm. Now, I'm guessing that I can't do this because Point is a struct, and only classes are initialised to null. Any suggestions why this ...