Re: [algogeeks] Print Hello infinite..................

2011-03-15 Thread Abhishek Sharma
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 abhishek.mallick2...@gmail.com wrote: #include stdio.h int main() { while(printf(Hello)); return 0; } On Thu, Mar

Re: [algogeeks] Print Hello infinite..................

2011-03-15 Thread Abhishek Sharma
@nidhi: yup.. u r rite.. sorry..my bad... On Thu, Mar 10, 2011 at 11:58 AM, Nishant Agarwal nishant.agarwa...@gmail.com wrote: #includestdio.h void print1(); void print2() { printf(Hello\n); print1(); } void print1() { printf(Hello\n); print2(); } int main() {

Re: [algogeeks] Print Hello infinite..................

2011-03-15 Thread DIPANKAR DUTTA
@All: it is not possible. as you your target program contain finite number of instraction and execute some instruction many times. what ever tips you are using in your high lavel program must convet to Assembly program contains some GOTO (ultimately all loop converted into JUMP call)or Use stack

Re: [algogeeks] Print Hello infinite..................

2011-03-11 Thread Arun prasath
int main(void) { inf_times: printf(Hello); goto inf_times; return 0; } On Fri, Mar 11, 2011 at 7:46 PM, UMESH KUMAR kumar.umesh...@gmail.comwrote: Hi my question is without Loop and Recursion function using??? On Fri, Mar 11, 2011 at 5:40 AM, Abhishek Mallick

Re: [algogeeks] Print Hello infinite..................

2011-03-09 Thread Abhishek Sharma
#include headers int main(){ printf(Hello); main(); } On Mon, Mar 7, 2011 at 7:38 AM, Terence technic@gmail.com wrote: system(yes Hello); (on Linux) On 2011-3-7 2:09, sudheer kumar wrote: use GOTO On Sun, Mar 6, 2011 at 10:49 PM, UMESH KUMAR kumar.umesh...@gmail.comwrote: How

Re: [algogeeks] Print Hello infinite..................

2011-03-09 Thread nidhi jain
@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

Re: [algogeeks] Print Hello infinite..................

2011-03-09 Thread Nishant Agarwal
#includestdio.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.comwrote: @abhishek:isn't it recursion? -- You

Re: [algogeeks] Print Hello infinite..................

2011-03-08 Thread Terence
system(yes Hello); (on Linux) On 2011-3-7 2:09, sudheer kumar wrote: use GOTO On Sun, Mar 6, 2011 at 10:49 PM, UMESH KUMAR kumar.umesh...@gmail.com mailto:kumar.umesh...@gmail.com wrote: How to print Hello Infinite times without using Loop and Recursion function ? -- You

[algogeeks] Print Hello infinite..................

2011-03-06 Thread UMESH KUMAR
How to print Hello Infinite times without using Loop and Recursion function ? -- 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

Re: [algogeeks] Print Hello infinite..................

2011-03-06 Thread sudheer kumar
use GOTO On Sun, Mar 6, 2011 at 10:49 PM, UMESH KUMAR kumar.umesh...@gmail.comwrote: How to print Hello Infinite times without using Loop and Recursion function ? -- You received this message because you are subscribed to the Google Groups Algorithm Geeks group. To post to this group,