This is the mail archive of the gcc-help@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: how to implement this ?


On Mon, Jan 07, 2013 at 02:31:19PM +0000, Andrew Haley wrote:
> On 01/07/2013 04:46 AM, horseriver wrote:
> > hi:
> > 
> >   how to implement this assignment by MACRO?
> >   int a,b,c ;
> >   
> >   ((a==0)?b:c)=8;
> 
> This is for help with GCC, not general C coding help.
> 
> *((a==0) ? &b : &c) = 8;
> 
> But this is really horrible code.  I wouldn't do it.

thans!
  
  why gcc report that error ?
  
  gcc can translate "  ((a==0)?b:c)=8 " into if-else sentence .

  wht is the reason ï
> 
> Andrew.
> 


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]