[algogeeks] thanu moorthy wants to chat

2011-08-30 Thread thanu moorthy
--- thanu moorthy wants to stay in better touch using some of Google's coolest new products. If you already have Gmail or Google Talk, visit: http://mail.google.com/mail/b-7f14c0be8e-f84354e782-zIKh5Ej7oMU0ou-a_G-mWzcUuBw You'll

[algogeeks] c question

2011-08-13 Thread thanu moorthy
#includestdio.h #includeunistd.h int main() { int return_value; printf(forking process); fork(); printf(hello\n); return 0; } in the above program the output is forking processhello forking processhello but in the below prog includestdio.h #includeunistd.h int main() { int

[algogeeks] c output

2011-08-01 Thread thanu moorthy
Please help me... How can the following output be obtained : 1.main() { int i=1; printf(%d\t%d\t%d\t,i,i++,i); } output: 2 1 2 2.main() { int i=1; printf(%d\t%d\t%d\t,i,++i,i); } output: 2 2 2 3.main() { int i=1; printf(%d\t%d\t%d\t,i,i++,i++); } output: 3 2 1

Re: [algogeeks] c output

2011-08-01 Thread thanu moorthy
thanks Regards by THANU - -- 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