User Anthony Cuozzo - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T20:34:23Z http://stackoverflow.com/feeds/user/50784 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1756811/does-gccs-attributepacked 4 Does GCC's __attribute__((__packed__))...? Anthony Cuozzo 2009-11-18T15:32:03Z 2009-11-18T18:49:36Z <p><strong>Purpose</strong></p> <p>I am writing a network program in C (specifically <code>gnu89</code>) and I would like to simplify things by reinterpreting a certain <code>struct X</code> as big array of bytes (a.k.a. <code>char</code>), sending the bytes over the network, and reinterpreting them as <code>struct X</code> on the other side. To this end I have decided to use gcc's __attribute__((__packed__ )). I have done my best to ensure that this is done correctly (i.e. I've accounted for endianness and other related issues).</p> <p><strong>Question</strong></p> <p>Other than guaranteeing that <code>struct X</code> is as small as possible, does gcc guarantee that a <code>struct</code> defined with __attribute__((__packed__ )) retains the original ordering? I've done a fair amount of searching and I have yet to find any documentation on whether or not this guarantee exists.</p> <p><strong>Notes</strong></p> <p>It is safe to assume that both the sender and receiver will encounter no portability issues (e.g. <code>sizeof(int)</code> on the server is equal to <code>sizeof(int)</code> on the client).</p> http://stackoverflow.com/questions/470331/the-bounds-on-void-pointers-in-ansi-c89-iso-c90 0 The bounds on void-pointers in ANSI C89/ISO C90 Anthony Cuozzo 2009-01-22T18:40:11Z 2009-08-12T17:41:34Z <p><strong>Is there a way to portably determine the upper and lower bound on void-pointer values in ANSI C89/ISO C90?</strong> (I currently do not have a copy of the standard with me (I have one at home). Of course if void-pointer values are guaranteed to be unsigned this task is trivial (via sizeof(void *)); however, I cannot recall if this is guaranteed or not. I can think of a few very inefficient algorithms (increment until overflow, etc.), but I would like to know if anyone has a relatively cheap (in terms of time-complexity) and portable way to calculate these bounds.)</p> <p>--EDIT--</p> <p><strong>Also:</strong> Is there a portable way to determine the validity of the pointer values?</p> <p><strong>Why:</strong> This came up in a discussion with a co-worker and it stumped me. I don't know what he's working on, but I just want to know because I am interested! :-)</p> http://stackoverflow.com/questions/415452/object-orientation-in-c 13 Object-Orientation in C Anthony Cuozzo 2009-01-06T04:26:16Z 2009-08-11T22:58:01Z <p>Can someone please share a set of nifty preprocessor hacks (ANSI C89/ISO C90 compatible please) which enable some kind of ugly (but usable) object-orientation in C? I am familiar with a few different object-oriented languages, so please don't respond with answers like "Learn C++!". I have read "<a href="http://www.planetpdf.com/codecuts/pdfs/ooc.pdf" rel="nofollow" title="Object-Oriented Programming With ANSI C">Object-Oriented Programming With ANSI C</a>" (beware: <strong>pdf</strong>) and several other interesting solutions, but I'm mostly interested in yours :-)!</p> <p><hr /></p> <p>See also <a href="http://stackoverflow.com/questions/351733/can-you-write-object-oriented-code-in-c" title="Can you write object oriented code in C?">Can you write object oriented code in C?</a></p> http://stackoverflow.com/questions/1262459/coding-standards-for-pure-c-not-c/1262992#1262992 3 Answer by Anthony Cuozzo for Coding Standards for pure C (not C++) Anthony Cuozzo 2009-08-11T21:20:48Z 2009-08-11T21:20:48Z <p>You may be interested in checking out the answers to a <a href="http://stackoverflow.com/questions/415452/object-orientation-in-c" title="Object-Orientation in C">similar question</a> I asked not too long ago. Moreover, if you're interested in C style guides, you may want to take a look at <a href="http://www.chris-lott.org/resources/cstyle/" rel="nofollow" title="C and C++ Style Guides">this page</a> since it is a repository for C (and C++) style guides. If you're in the mood for a <strong>good laugh</strong>, please take a look at the <a href="http://homepages.inf.ed.ac.uk/dts/pm/Papers/nasa-c-style.pdf" rel="nofollow" title="NASA C Style Guide">NASA C Style Guide</a>. In particular, take a look at the <em>massive</em> comment... you'll know which one I'm talking about. Don't write comments like this please.</p> <p>I personally reccomend the <a href="http://www.chris-lott.org/resources/cstyle/indhill-cstyle.pdf" rel="nofollow" title="Indian Hill C Style Guide">Indian Hill C Style Guide</a> with some modifications. Furthermore, you may want to purchase the book <a href="http://www.cs.princeton.edu/software/cii/" rel="nofollow" title="C Interfaces and Implementations">C Interfaces and Implementations</a> if you're having trouble designing large-scale programs in C.</p> http://stackoverflow.com/questions/1262857/do-you-rely-on-your-memory-or-consult-references-and-use-a-lot-of-intellisense/1262948#1262948 0 Answer by Anthony Cuozzo for do you rely on your memory or consult references and use a lot of intellisense? Anthony Cuozzo 2009-08-11T21:11:50Z 2009-08-11T21:11:50Z <p><strong>I rely on my bookmarks and books... and my ability to use them effectively.</strong> I have multiple books above my desk, including a copy of the ISO C90 standard. Moreover, I use <a href="http://www.xmarks.com/" rel="nofollow" title="Xmarks">Xmarks</a> to have access to my <a href="http://eden.rutgers.edu/~acuozzo/img/Bookmarks-08112009.png" rel="nofollow" title="bookmarks">bookmarks</a> wherever I go. Sometimes, I make a <code>pdf</code> out of a particular page and upload it to my web-site if it is important enough.</p> <p>Sometimes the information provided by the resources I use makes its way into my terrible memory... <em>maybe</em>.</p> http://stackoverflow.com/questions/1090451/net-garbage-collector-basics/1262111#1262111 0 Answer by Anthony Cuozzo for .NET Garbage Collector Basics Anthony Cuozzo 2009-08-11T18:21:49Z 2009-08-11T18:21:49Z <p>I'm currently reading <a href="http://rads.stackoverflow.com/amzn/click/0471941484" rel="nofollow" title="Garbage Collection: Algorithms for Automatic Dynamic Memory Management">this book</a> to help with an independent study project in Garbage Collection at my university. If you really want to understand the ins-and-outs of Garbage Collection, I suggest reading this book because it seems to be the best one around. This most likely contains more information than what you're looking for, but it may be helpful if you want to write a Garbage Collector in the future.</p> http://stackoverflow.com/questions/1218149/arbitrary-precision-arithmetic-explanation/1232406#1232406 1 Answer by Anthony Cuozzo for Arbitrary-precision arithmetic Explanation Anthony Cuozzo 2009-08-05T10:35:47Z 2009-08-05T10:35:47Z <p>For a simple implementation you may be interested in <a href="http://www.cs.sunysb.edu/~skiena/392/programs/bignum.c" rel="nofollow" title="bignum.c">this</a>. I keep it bookmarked because it is good reference material.</p> http://stackoverflow.com/questions/479080/trim-is-not-part-of-the-standard-c-c-library/479115#479115 1 Answer by Anthony Cuozzo for trim is not part of the standard c/c++ library ? Anthony Cuozzo 2009-01-26T08:29:55Z 2009-08-05T10:08:42Z <p>I don't know too much about C++, but <a href="http://stackoverflow.com/questions/352055/best-algorithm-to-strip-leading-and-trailing-spaces-in-c#412684" title="check this out">check this out</a> to see how to accomplish this in C. (In my defense: you did say <strong>C</strong>/C++ in the title :-)</p> http://stackoverflow.com/questions/478528/parsing-integer-to-string-c/479008#479008 0 Answer by Anthony Cuozzo for Parsing Integer to String C Anthony Cuozzo 2009-01-26T07:01:01Z 2009-08-05T10:08:18Z <p>You may want to take a look at the <em>compliant solution</em> on <a href="http://bit.ly/18EUj6" rel="nofollow" title="Use strtol() or a related function to convert a string token to an integer">this site</a>.</p> http://stackoverflow.com/questions/916186/how-can-i-identify-my-build-platform-properly/919449#919449 0 Answer by Anthony Cuozzo for How can I identify my build platform properly? Anthony Cuozzo 2009-05-28T06:22:12Z 2009-08-05T10:06:06Z <p>You may be interested in checking out: <a href="http://predef.sourceforge.net/" rel="nofollow" title="Pre-defined C/C++ Compiler Macros">Pre-defined C/C++ Compiler Macros</a>. It's a goldmine.</p> http://stackoverflow.com/questions/694967/splint-and-test-coverage-analysis/703996#703996 0 Answer by Anthony Cuozzo for splint and test coverage analysis? Anthony Cuozzo 2009-04-01T03:53:28Z 2009-08-05T10:05:18Z <p>You may be interested in checking out: <a href="http://stackoverflow.com/questions/393208/what-is-the-best-command-line-tool-to-clean-up-code">What is the best command-line tool to clean up code?</a> I don't know if it will help, but there are many great suggestions on there.</p> http://stackoverflow.com/questions/434763/are-prototypes-required-for-all-functions-in-c89-c90-or-c99/434821#434821 1 Answer by Anthony Cuozzo for Are prototypes required for all functions in C89, C90 or C99? Anthony Cuozzo 2009-01-12T08:44:15Z 2009-08-05T10:04:46Z <p>To the best of my knowledge (in ANSI C89/ISO C90), no. I am unsure about C99; however, I would expect the same. </p> <p><strong>Personal Note:</strong> I only write function prototypes when...</p> <ol> <li>I need to (when A() calls B() <em>and</em> B() calls A()), or</li> <li>I am exporting the function; otherwise, it feels superfluous.</li> </ol> http://stackoverflow.com/questions/440331/why-can-i-change-the-values-of-a-const-char-variable/441002#441002 1 Answer by Anthony Cuozzo for Why can I change the values of a const char* variable? Anthony Cuozzo 2009-01-13T22:02:21Z 2009-08-05T10:02:55Z <p>On a related note, definitely take a look at "<a href="http://blog.voidnish.com/?p=37" rel="nofollow" title="const pointer versus pointer to const">const pointer versus pointer to const</a>". It helps with what some people call <em>const correctness</em>. I keep it in my bookmarks so that I can refer to it every now and then.</p> http://stackoverflow.com/questions/371338/best-resource-for-learning-tcsh/415062#415062 1 Answer by Anthony Cuozzo for Best resource for learning tcsh? Anthony Cuozzo 2009-01-06T00:44:29Z 2009-08-05T10:02:24Z <p>I would suggest learning Csh first. You can start by reading Bill Joy's classic paper "<a href="http://www.kitebird.com/csh-tcsh-book/csh-intro.pdf" rel="nofollow" title="An Introduction to the C shell">An Introduction to the C shell</a>". Then, move on to reading "<a href="http://www.grymoire.com/Unix/Csh.html" rel="nofollow" title="Csh">Csh</a>". After that, Google and practice are your best-friends.</p> http://stackoverflow.com/questions/431175/what-was-your-first-computer-game-that-got-you-interested-in-computers/460081#460081 6 Answer by Anthony Cuozzo for What was your first computer game that got you interested in computers? Anthony Cuozzo 2009-01-20T03:50:33Z 2009-08-05T10:00:23Z <p><strong>Doom</strong></p> <p><img src="http://liquidarchitecture.files.wordpress.com/2009/07/doom.jpg" alt="Doom" title="Doom" /></p> http://stackoverflow.com/questions/1225844/what-techniques-strategies-do-people-use-for-building-objects-in-c-not-c/1232247#1232247 1 Answer by Anthony Cuozzo for What techniques/strategies do people use for building objects in C (not C++)? Anthony Cuozzo 2009-08-05T09:55:56Z 2009-08-05T09:55:56Z <p>You may be interested in checking out the answers to <a href="http://stackoverflow.com/questions/415452/object-orientation-in-c" title="Object-Orientation in C">my SO question</a>.</p> http://stackoverflow.com/questions/438268/scheme-project-ideas 6 Scheme Project Ideas Anthony Cuozzo 2009-01-13T08:05:34Z 2009-08-05T09:49:13Z <p>I am interested in improving my Functional Programming skills and I believe that the best way to do this is by working on a medium-sized project. In the past I have worked with Scheme and would like to continue to do so. Can someone please suggest some medium-sized Scheme project ideas? (Note: I am well-versed in C (ANSI C89/ISO C90), so making use of Scheme's foreign function interface to (for instance) interact with a library like ncurses is not only possible, but preferred.)</p> http://stackoverflow.com/questions/1230931/c-c-documentation-tool/1232211#1232211 0 Answer by Anthony Cuozzo for C/C++ documentation tool Anthony Cuozzo 2009-08-05T09:47:35Z 2009-08-05T09:47:35Z <p>I have used <a href="http://www.gedanken.demon.co.uk/cxref/" rel="nofollow" title="cxref">cxref</a> in the past. It is C-only, but I find that it is nice and simple to use. I tend to prefer doxygen nowadays.</p> http://stackoverflow.com/questions/1219611/portable-thread-safety-in-c 2 Portable thread-safety in C? Anthony Cuozzo 2009-08-02T19:28:12Z 2009-08-02T20:36:03Z <p><strong>Purpose</strong></p> <p>I'm writing a small library for which portability is the biggest concern. It has been designed to assume only a mostly-compliant C90 (ISO/IEC 9899:1990) environment... nothing more. The set of functions provided by the library all operate (read/write) on an internal data structure. I've considered some other design alternatives, but nothing else seems feasible for what the library is <a href="http://stackoverflow.com/questions/989383/what-portability-issues-are-associated-with-byte-level-access-to-pointers-in-c" rel="nofollow" title="What portability issues are associated with byte-level access to pointers in C?">trying to achieve</a>.</p> <p><strong>Question</strong></p> <p>Are there any portable algorithms, techniques, or incantations which can be used to ensure thread-safety? I am not concerned with making the functions re-entrant. Moreover, I am not concerned with speed or (possibly) wasting resources if the algorithm/technique/incantation is portable. Ideally, I don't want to depend on any libraries (such as GNU Pth) or system-specific operations (like atomic test-and-set).</p> <p>I have considered modifying <a href="http://en.wikipedia.org/wiki/Lamport%27s%5Fbakery%5Falgorithm" rel="nofollow">Lamport's bakery algorithm</a>, but I do not know how to alter it to work inside of the functions called by the threads instead of working in the threads themselves.</p> <p>Any help is greatly appreciated.</p> http://stackoverflow.com/questions/989383/what-portability-issues-are-associated-with-byte-level-access-to-pointers-in-c 2 What portability issues are associated with byte-level access to pointers in C? Anthony Cuozzo 2009-06-12T22:37:50Z 2009-08-02T19:40:18Z <p><strong>Purpose</strong></p> <p>I am writing a small library for a larger project which supplies malloc/realloc/free wrapper-functions as well as a function which can tell you whether or not its parameter (of type <code>void *</code>) corresponds to live (not yet freed) memory allocated and managed by the library's wrapper-functions. Let's refer to this function as <code>isgood_memory</code>.</p> <p>Internally, the library maintains a hash-table to ensure that the search performed by <code>isgood_memory</code> is reasonably fast. The hash-table maintains pointer <em>values</em> (elements of type <code>void *</code>) to make the search possible. Clearly, values are added and removed from the hash-table to keep it up-to-date with what has been allocated and what has been freed, respectively.</p> <p>The portability of the library is my biggest concern. It has been designed to assume only a mostly-compliant C90 (ISO/IEC 9899:1990) environment... nothing more.</p> <p><strong>Question</strong></p> <p>Since portability is my biggest concern, I couldn't assume that <code>sizeof(void *) == sizeof(X)</code> for the hash-function. Therefore, I have resorted to treating the value byte-by-byte as if it were a string. To accomplish this, the hash function looks a little like:</p> <pre><code>static size_t hashit(void *ptrval) { size_t i = 0, h = 0; union { void *ptrval; unsigned char string[sizeof(void *)]; } ptrstr; ptrstr.ptrval = ptrval; for (; i &lt; sizeof(void *); ++i) { size_t byte = ptrstr.string[i]; /* Crazy operations here... */ } return (h); } </code></pre> <p>What portability concerns do any of you have with this particular fragment? Will I encounter any funky alignment issues by accessing <code>ptrval</code> byte-by-byte?</p> http://stackoverflow.com/questions/995627/where-can-i-find-c-coding-exercises-to-practice/996492#996492 1 Answer by Anthony Cuozzo for Where can I find C coding exercises to practice? Anthony Cuozzo 2009-06-15T14:39:36Z 2009-06-15T14:39:36Z <p>You may be interested in checking out <a href="http://infolab.stanford.edu/~ullman/focs.html" rel="nofollow">Foundations of Computer Science (C Edition)</a> by Alfred Aho and and Jeffrey Ullman. The link provides you with legal access to the entire book. It contains plenty of exercises related to the implementation of the "classic" data-structures in C. If you are familiar with these data-structures and algorithms in another language, then this book will at least help translate what you already know to C. If you aren't familiar with them, then this book will teach you the building blocks needed to construct large programs (in C, of course :-).</p> http://stackoverflow.com/questions/723925/which-web-development-language-is-best-for-a-c-programmer 4 Which web-development language is best for a C programmer? Anthony Cuozzo 2009-04-07T02:00:03Z 2009-04-07T14:34:47Z <p><strong>Question</strong></p> <p>I program in C (ANSI C89/ISO C90) in a *n*x environment on a regular basis. I am now in a position where it would be beneficial for me to learn a web-development language. In particular, I'm looking to learn a language which:</p> <ol> <li>...exploits my background as a C programmer.</li> <li>...can produce the level of interactiveness of a web-site like stackoverflow.com.</li> </ol> <p>I hear many good things about PHP. Do any of you have other suggestions?</p> <p><strong>Notes</strong></p> <ol> <li>Other languages I am familiar with: Java, Perl, Tcsh, and Scheme.</li> <li>I forgot to mention that I'm interested in learning a web-development language which is capable of doing things on the client-side. I'm sorry if this was unclear.</li> <li>I plan to use my knowledge of the language to develop a web-site which is stylistically similar to stackoverflow.com (with a very different concept, of course).</li> </ol> http://stackoverflow.com/questions/172186/what-programming-religious-argument-bothers-you-the-most/703981#703981 11 Answer by Anthony Cuozzo for What programming religious argument bothers you the most? Anthony Cuozzo 2009-04-01T03:44:41Z 2009-04-01T03:44:41Z <p>That <code>goto</code> statements should never...ever be used.</p> http://stackoverflow.com/questions/497786/why-would-anybody-use-c-over-c/497817#497817 12 Answer by Anthony Cuozzo for Why would anybody use C over C++? Anthony Cuozzo 2009-01-31T00:26:07Z 2009-01-31T00:26:07Z <p>I choose to write in C because I enjoy working with a small, tight language. I like having access to a standard which can be read in a reasonable amount of time (for me -- I'm a very slow reader). Moreover, I use it to write software for embedded systems for which few desirable C++ compilers exist (like <strong>some</strong> PIC micro-controllers).</p> http://stackoverflow.com/questions/467814/would-you-hire-a-c-java-programmer-for-a-c-role/467832#467832 10 Answer by Anthony Cuozzo for Would you hire a C /Java programmer for a C++ role? Anthony Cuozzo 2009-01-22T02:08:27Z 2009-01-22T02:08:27Z <p>You really can't judge the skill of a computer programmer by his knowledge of a particular language. The ability to pick up a new language depends upon the eagerness and experience of the programmer (at least). Take a look at what he/she has worked on before. Look at how young or how old he/she is (either can be a perk -- it depends). Try your best to evaluate the individual for strengths/weaknesses instead of experience with C or Java. This, I feel, will help you make the best decision.</p> http://stackoverflow.com/questions/459743/is-null-always-false/460045#460045 1 Answer by Anthony Cuozzo for Is NULL always false? Anthony Cuozzo 2009-01-20T03:33:06Z 2009-01-20T03:33:06Z <p>I simply refer you to <a href="http://c-faq.com/null/ptrtest.html" rel="nofollow" title="Question 5.3">Question 5.3</a> of the C-FAQ. It answers this exact question.</p> http://stackoverflow.com/questions/434464/what-do-you-do-to-take-breaks-from-programming/456400#456400 0 Answer by Anthony Cuozzo for What do you do to take breaks from programming? Anthony Cuozzo 2009-01-19T02:50:48Z 2009-01-19T02:50:48Z <p>I play Doom (the original).</p> http://stackoverflow.com/questions/354686/programming-related-songs/455467#455467 1 Answer by Anthony Cuozzo for Programming Related Songs Anthony Cuozzo 2009-01-18T17:05:12Z 2009-01-18T17:05:12Z <p>Of course: "<a href="http://www.cs.bgu.ac.il/~omri/Humor/write_in_c.html" rel="nofollow" title="Write in C">Write in C</a>"!</p> http://stackoverflow.com/questions/452864/what-are-some-of-your-oldest-programming-books-that-you-still-use/452870#452870 51 Answer by Anthony Cuozzo for What are some of your oldest programming books that you still use? Anthony Cuozzo 2009-01-17T06:04:24Z 2009-01-17T20:51:36Z <p>"<a href="http://en.wikipedia.org/wiki/The_C_Programming_Language_(book)" rel="nofollow">The C Programming Language</a>" (K&amp;R2) by Brian W. Kernighan and Dennis M. Ritchie. </p> <p>1988 (not 1978! I wrote K&amp;R2 for a reason!)</p> <p>It is indispensable.</p> http://stackoverflow.com/questions/452864/what-are-some-of-your-oldest-programming-books-that-you-still-use/452889#452889 4 Answer by Anthony Cuozzo for What are some of your oldest programming books that you still use? Anthony Cuozzo 2009-01-17T06:12:36Z 2009-01-17T06:12:36Z <p>"The Theory of Parsing, Translation, and Compiling" (volumes 1 and 2) by Alfred V. Aho and Jeffrey D. Ullman. Published in 1972!</p> http://stackoverflow.com/questions/1756811/does-gccs-attributepacked/1758204#1758204 Comment by Anthony Cuozzo on Does GCC's __attribute__((__packed__))...? Anthony Cuozzo 2009-11-20T00:45:02Z 2009-11-20T00:45:02Z @DigitalRoss Don't delete the answer! It may help someone else who comes along to this thread. http://stackoverflow.com/questions/1756811/does-gccs-attributepacked/1756967#1756967 Comment by Anthony Cuozzo on Does GCC's __attribute__((__packed__))...? Anthony Cuozzo 2009-11-19T17:59:04Z 2009-11-19T17:59:04Z @Robert Gamble Thank you! :-) http://stackoverflow.com/questions/1756811/does-gccs-attributepacked Comment by Anthony Cuozzo on Does GCC's __attribute__((__packed__))...? Anthony Cuozzo 2009-11-19T17:58:28Z 2009-11-19T17:58:28Z @Jonathan Leffler I am writing this program for personal use only. I know the architectures of the connecting machines beforehand. http://stackoverflow.com/questions/1756811/does-gccs-attributepacked/1758204#1758204 Comment by Anthony Cuozzo on Does GCC's __attribute__((__packed__))...? Anthony Cuozzo 2009-11-19T17:54:53Z 2009-11-19T17:54:53Z @DigitalRoss I am the first one to write code which strictly conforms to ISO C90. I never use compiler-specific hacks. However, in this case I am writing code entirely for personal use. http://stackoverflow.com/questions/1296162/how-can-i-read-a-python-pickle-database-file-from-c Comment by Anthony Cuozzo on How can I read a python pickle database/file from C? Anthony Cuozzo 2009-08-18T20:37:57Z 2009-08-18T20:37:57Z Is portability very important to your application? http://stackoverflow.com/questions/1270760/passing-a-string-by-reference-in-java/1270782#1270782 Comment by Anthony Cuozzo on Passing a String by Reference in Java? Anthony Cuozzo 2009-08-14T00:01:11Z 2009-08-14T00:01:11Z @CPerkins You have no idea how angry that makes me. It makes my blood boil. http://stackoverflow.com/questions/1268963/why-is-preprocessor-usage-less-common-in-languages-other-than-c-c-objc/1269254#1269254 Comment by Anthony Cuozzo on Why is preprocessor usage less common in languages other than C/C++/ObjC ? Anthony Cuozzo 2009-08-12T23:35:47Z 2009-08-12T23:35:47Z +1 Your answer seems to be the most neutral and informative one here. I applaud you. http://stackoverflow.com/questions/1263480/good-way-to-organize-c-source-files/1264073#1264073 Comment by Anthony Cuozzo on Good way to organize C source files? Anthony Cuozzo 2009-08-12T03:36:13Z 2009-08-12T03:36:13Z +1 I do this all of the time. http://stackoverflow.com/questions/1257376/interesting-project-to-learn-c Comment by Anthony Cuozzo on Interesting project to learn C? Anthony Cuozzo 2009-08-11T03:11:56Z 2009-08-11T03:11:56Z +1 Great question. http://stackoverflow.com/questions/1257376/interesting-project-to-learn-c/1257411#1257411 Comment by Anthony Cuozzo on Interesting project to learn C? Anthony Cuozzo 2009-08-11T03:11:04Z 2009-08-11T03:11:04Z +1 Doom is the best! http://stackoverflow.com/questions/1257376/interesting-project-to-learn-c/1257567#1257567 Comment by Anthony Cuozzo on Interesting project to learn C? Anthony Cuozzo 2009-08-11T03:10:10Z 2009-08-11T03:10:10Z +1 Reinventing the wheel. http://stackoverflow.com/questions/1245979/c-c-call-graph-utility-for-windows-platform/1246102#1246102 Comment by Anthony Cuozzo on C/C++ call-graph utility for Windows platform Anthony Cuozzo 2009-08-07T18:25:36Z 2009-08-07T18:25:36Z +1: For doxygen and codeviz. http://stackoverflow.com/questions/415452/object-orientation-in-c/1232248#1232248 Comment by Anthony Cuozzo on Object-Orientation in C Anthony Cuozzo 2009-08-05T10:11:47Z 2009-08-05T10:11:47Z I've actually seen it before. I believe it was a nice piece of work. http://stackoverflow.com/questions/1219611/portable-thread-safety-in-c/1219687#1219687 Comment by Anthony Cuozzo on Portable thread-safety in C? Anthony Cuozzo 2009-08-02T20:13:44Z 2009-08-02T20:13:44Z I am now considering abstracting the lock and unlock procedures and using some pre-processor macros to support a variety of different thread libraries. http://stackoverflow.com/questions/1219438/c-how-do-you-simulate-an-exception/1219456#1219456 Comment by Anthony Cuozzo on C : How do you simulate an 'exception' ? Anthony Cuozzo 2009-08-02T20:05:30Z 2009-08-02T20:05:30Z +1: For point #3.