#include <stdio.h>
int main()
{
while(printf("Hello"));
return 0;
}On Thu, Mar 10, 2011 at 11:58 AM, Nishant Agarwal < [email protected]> wrote: > #include<stdio.h> > void print1(); > void print2() > { > printf("Hello\n"); > print1(); > } > void print1() > { > printf("Hello\n"); > print2(); > } > int main() > { > print1(); > > } > > > On Thu, Mar 10, 2011 at 11:47 AM, nidhi jain > <[email protected]>wrote: > >> >> >> @abhishek:isn't it recursion? >> >> -- >> 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. > -- 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.
