User technoxicated - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T18:13:00Z http://stackoverflow.com/feeds/user/12279 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/72406/what-development-book-made-the-most-impact-on-you-as-a-developer/72439#72439 44 Answer by technoxicated for What development book made the most impact on you as a developer? technoxicated 2008-09-16T13:51:22Z 2009-08-05T20:50:09Z <p><a href="http://rads.stackoverflow.com/amzn/click/0131103628" rel="nofollow">The C Programming Language, Second Edition</a></p> <p><img src="https://images-na.ssl-images-amazon.com/images/I/41jZJq0HMcL.%5FSL75%5F.jpg" alt="The C Programming Language, Second Edition" /></p> http://stackoverflow.com/questions/98242/why-is-foon-n-not-working/98272#98272 -3 Answer by technoxicated for Why is foo(n++, n) not working? technoxicated 2008-09-19T00:17:16Z 2008-09-19T00:17:16Z <p>the implementation of printf you have must be processing arguments from right to left. just try it with a larger no. of args to find out more. a pattern will develop</p> <pre><code>printf("%d %d %d %d %d", test++, test++, test++, test++, test); </code></pre> http://stackoverflow.com/questions/98242/why-is-foon-n-not-working/98272#98272 Comment by technoxicated on Why is foo(n++, n) not working? technoxicated 2009-02-13T07:21:40Z 2009-02-13T07:21:40Z The compiler ordering argument evaluation <i>is</i> the specific implementation, is it not? http://stackoverflow.com/questions/72406/what-development-book-made-the-most-impact-on-you-as-a-developer/79629#79629 Comment by technoxicated on What development book made the most impact on you as a developer? technoxicated 2008-09-17T06:00:03Z 2008-09-17T06:00:03Z i absolutely agree with you. his networking book is also fantastic...