bearophile wrote: > Steven Schveighoffer: > >> int c = (){return a + b;}(); > > You can also write: > int c = {return a + b;}(); > > Bye, > bearophile Shorter: int c = a + b;