Re: [ilugd] I am unable to understand this C code

2010-02-12 Thread Prashant Batra
Case 1: int main(void) { int printf(const char *n,...); int a=1; printf("abcdef"); return 0; } Compile using gcc, no warnings. No is included. Compiler takes the local printf declaration, and thus gives no warning. is the declaration in stdio.h, similar to your local declaration. If you decl

Re: [ilugd] I am unable to understand this C code

2010-02-12 Thread rakesh kumar
On Fri, Feb 12, 2010 at 1:46 AM, Ankit Chaturvedi < ankit.chaturv...@gmail.com> wrote: > > > On Thu, Feb 11, 2010 at 7:16 PM, rakesh kumar wrote: > >> >> >> On Thu, Feb 11, 2010 at 3:33 PM, Ankit Chaturvedi < >> ankit.chaturv...@gmail.com> wrote: >> >>> On Sun, Feb 7, 2010 at 5:05 PM, SUBODH ROHI