User technoxicated - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T18:13:00Zhttp://stackoverflow.com/feeds/user/12279http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/72406/what-development-book-made-the-most-impact-on-you-as-a-developer/72439#7243944Answer by technoxicated for What development book made the most impact on you as a developer?technoxicated2008-09-16T13:51:22Z2009-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-3Answer by technoxicated for Why is foo(n++, n) not working?technoxicated2008-09-19T00:17:16Z2008-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#98272Comment by technoxicated on Why is foo(n++, n) not working?technoxicated2009-02-13T07:21:40Z2009-02-13T07:21:40ZThe 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#79629Comment by technoxicated on What development book made the most impact on you as a developer?technoxicated2008-09-17T06:00:03Z2008-09-17T06:00:03Zi absolutely agree with you. his networking book is also fantastic...