well , I am feeling HAPPY to answer your question , I would like to suggest you to access the source site if it's available , for more information.
Nested functions means function within a function.
#include<stdio.h>
int add(int a,int b)
{
int c=3;
int d=a+b;
int addToC(int c, int d )
{
printf("This is addToC.....n");
return(c+d);
}
return(addToC(c,d));
}
i nt main()
{
printf(" Addition %d n" ,add(1,2));
return 0;
}
For more information , please do visit source site:
Hope it will help you out.
Answered by
Uttam
at
2:31 PM on June 30, 2008