int main(void)
{
    inf_times:
        printf("Hello");

    goto inf_times;
    return 0;
}


On Fri, Mar 11, 2011 at 7:46 PM, UMESH KUMAR <[email protected]>wrote:

> Hi
>  my question is without Loop and Recursion function using???????????
>
>
> On Fri, Mar 11, 2011 at 5:40 AM, 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.
>

-- 
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