my problem is the following:
why can't i use the indirection operator on a structure member? my compiler just says "syntax error '*'" at the second integer assignment..
thx.
Code:
main()
{
struct STRUCTURE
{
int *integer;
} a;
int *integer;
*integer = 1; /* success */
a.*integer = 1; /* error */
}
thx.