Message-Id: <3.0.6.32.19990707200818.007d4ec0@dce03.ipt.br> X-Sender: csrabak AT dce03 DOT ipt DOT br X-Mailer: QUALCOMM Windows Eudora Light Version 3.0.6 (32) Date: Wed, 07 Jul 1999 20:08:18 -0300 To: djgpp AT delorie DOT com From: "Cesar S. Rabak" Subject: Re: can anybody help me regarding this In-Reply-To: <7lrv0j$hmm$1@news.vsnl.net.in> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Reply-To: djgpp AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk At 21:32 05/07/99 +0530, you wrote: >Hello > > i have encountered this in some place and am not able to understand >this statement : > >void (*f(int , char ))(float); > >can somebody please help me out. > > >this is correct believe me and it also works but am not able understand This is the output of cdecl program (which BTW is also available in DJGPP): cdecl.exe> explain void (*f(int , char ))(float); declare f as function (int, char) returning pointer to function (float) returning void HTH Cesar