thanks a ton for the info... we didnt know about that :P... btw for ur info.. we are not supposed to use loops as well..
On Fri, Mar 11, 2011 at 7:10 PM, Abhishek Mallick < [email protected]> wrote: > #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. > -- 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.
