RE: (expression) == expression

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Yes, that will produce two different values.
 
This...
x = (*(g)[*i]);
...is like this...
x = (*((g)[*i]));
 
Which is quite different from this...
x = (*g)[*i];
 
HTH,
--Eljay
 


[Index of Archives]     [Linux C Programming]     [Linux Kernel]     [eCos]     [Fedora Development]     [Fedora Announce]     [Autoconf]     [The DWARVES Debugging Tools]     [Yosemite Campsites]     [Yosemite News]     [Linux GCC]

  Powered by Linux