@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 to execute print statement several time.
On Fri, Mar 11, 2011 at 2:14 PM, Abhishek Sharma <[email protected]>wrote: > @nidhi: yup.. u r rite.. sorry..my bad... > > 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. > -- DIPANKAR DUTTA M-TECH,Computer Science & Engg. E&C Dept,IIT ROORKEE Uttarakhand , India – 247667 ------------------------------------------- website:http://people.iitr.ernet.in/shp/09535009/Website/index.html ph no-09045809987 Lab: 286454 email:[email protected] -- 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.
