Complex data type
I need help declaring a complex data type using Manx C (3.6a)
I want a data type called "BIGA " which is (as described to FF's "CDecl"):
declare BIGA as array 100 of pointer to array 4 of pointer to array 2 of
pointer to array 10 of int
CDecl gives me: (*(*(*BIGA[100])[4])[2])[10] which doesn't compile. Manx
says: (*(*(*BIGA[100])[4])[2])[10]
^ data type is too complex WARNING: too many
subscripts or dindirections on integer;
What should I do to make manx happy? Also how do I modify specified
integers in my variable BIGA? (Like: int (*(*(*BIGA[1])[1])[1])[1] = 1 ??)
Thanks Jason Freund USENET: freund@sakura.ucdavis.edu