It's compiler dependent. gcc comes from GNU project.
ANSI C doesn't allow nested function definitions.

On 3 October 2012 01:06, rahul sharma <[email protected]> wrote:

> Guys i have read that we cant define function in another function in c
> Then why this followung program running fine on gcc
>
> #include<stdio.h>
>     void abc()
>     {
>          printf("bac");
>          void abf()
>          {
>          printf("bas");
>          getchar();
>          }
> }
> int main()
> {
>     abc();
>     getchar();
> }
>
>  --
> You received this message because you are subscribed to the Google Groups
> "Algorithm Geeks" group.
> To post to this group, send email to [email protected].
> To unsubscribe from this group, send email to
> [email protected].
> For more options, visit this group at
> http://groups.google.com/group/algogeeks?hl=en.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Algorithm Geeks" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.

Reply via email to