#include <stdio.h>
int main()
{
while(printf("Hello"));
return 0;
}

On Thu, Mar 10, 2011 at 11:58 AM, Nishant Agarwal <
nishant.agarwa...@gmail.com> 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 
> <nidhi.jain311...@gmail.com>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 algogeeks@googlegroups.com.
>> To unsubscribe from this group, send email to
>> algogeeks+unsubscr...@googlegroups.com.
>> 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 algogeeks@googlegroups.com.
> To unsubscribe from this group, send email to
> algogeeks+unsubscr...@googlegroups.com.
> 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 algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.

Reply via email to