User Thomas Padron-McCarthy - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T19:42:50Z http://stackoverflow.com/feeds/user/15727 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1839584/should-i-use-an-index-column-in-a-many-to-many-link-table/1839634#1839634 3 Answer by Thomas Padron-McCarthy for Should I use an index column in a many to many "link" table? Thomas Padron-McCarthy 2009-12-03T12:37:40Z 2009-12-03T12:37:40Z <p>You don't <em>need</em> to add an extra, auto-incrementing index column, but I (perhaps contrary to most others) still recommend that you do. First, it is easier in the application program to refer to a row using a single number, for example when you delete a row. Second, it sometimes turns out to be useful to be able to know the order in which the rows were added.</p> http://stackoverflow.com/questions/1783815/what-is-a-good-fizzbuzz-question-for-a-sql-programmer/1784269#1784269 2 Answer by Thomas Padron-McCarthy for What is a good 'FizzBuzz' question for a SQL programmer? Thomas Padron-McCarthy 2009-11-23T16:28:12Z 2009-11-23T16:28:12Z <p>A "FizzBuzz" is supposed to be so simple that anyone who can program at all should be able to solve it, and a good programmer should be able to solve it almost without thinking, right?</p> <p>So maybe something like this:</p> <p>First, take two tables, <strong>Employees</strong> and <strong>Departments</strong>, with a foreign key from <strong>Employees</strong> that shows which department each employee works for. (Typical boring example, from almost any database textbook.) Then let them write a query that involves both tables, such as "give me the names of all employees who work for the Cleaning department".</p> <p>Then do exactly the same thing, but not with employees that work for departments, but with mice that are eaten by cats, or something else that is not an exact copy of the employee-department or student-course examples in the database textbook.</p> <p>If they can find who works at the Cleaning department, but have no idea how to find which mice were eaten by the cat Tom, don't hire!</p> http://stackoverflow.com/questions/1763616/ignore-initialization-from-incompatible-pointer-type-warnings/1763659#1763659 1 Answer by Thomas Padron-McCarthy for Ignore "initialization from incompatible pointer type" warnings? Thomas Padron-McCarthy 2009-11-19T14:27:48Z 2009-11-19T14:52:34Z <p>I guess the obvious answer to this is the question "why not fix the code to use the right pointer type"?</p> <p><strong>EDIT</strong>:</p> <p>OK, I can understand that you don't want to complicate the code unnecessarily, but I don't think it's that much of a complication, or even an unneccessary one.</p> <p>Let's look at the field <strong>open</strong> in the struct <strong>Hardware_MouseDriver</strong>, which is supposed to be a pointer to a function that takes a pointer to void as its first argument.</p> <p>To initialize this field, you use a pointer to the function <strong>Hardware_MouseDrivers_GPM_Open</strong>, and at another place a pointer to the function <strong>Hardware_MouseDrivers_DevInput_Open</strong>. None of these take a pointer to void as their first argument, and this is of course what the compiler warns about.</p> <p>Now, <em>if</em> a void pointer is the same size as these pointers, and there are no other surprising differences between how they are stored and handled, calls to these functions through the <strong>open</strong> pointer will work as expected. It is likely that it will, and I guess that with this type of low-level code it is unlikely that someone will port it to TOPS-20 or something. But there is no guarantee that it will work, and it looks (to me) strange. (And to the compiler, obviously!)</p> <p>So my suggestion would be to change code like this:</p> <pre><code>static int Hardware_MouseDrivers_GPM_Open(Hardware_MouseDrivers_GPM *this, char *path) { printf("GPM: Opening %s...\n", path); this-&gt;path = path; } </code></pre> <p>to the just slightly more complicated:</p> <pre><code>static int Hardware_MouseDrivers_GPM_Open(void *arg1, char *path) { Hardware_MouseDrivers_GPM *this = arg1; printf("GPM: Opening %s...\n", path); this-&gt;path = path; } </code></pre> <p>I think this change would be easier and less complicated than (1) turning off the warnings, (2) documenting it so readers can understand why that warning isn't supposed to be important here, (3) documenting it some more so your readers actually believe that you know what you are doing, and (4) handling the problems that will occur if someone actually <em>does</em> port your code to TOPS-20.</p> http://stackoverflow.com/questions/1714461/ansi-sql-manual/1738646#1738646 6 Answer by Thomas Padron-McCarthy for ANSI SQL Manual Thomas Padron-McCarthy 2009-11-15T20:06:24Z 2009-11-16T20:06:00Z <p>SQL isn't like C or Java, where there is a standard for the language, and then a number of companies and organizations are implementing the language as best they can, following the standard.</p> <p>Instead, the major databases came before the SQL standard, and the standard is a sort of compromise where every database vendor wanted to get their particular dialect and features in the standard.</p> <p>Therefore, there is much more variety between databases than between typical programming language compilers, and to use a database, you really need to know that particular SQL dialect.</p> <p>Having said that, I've got Gultzan and Peltzer's <a href="http://rads.stackoverflow.com/amzn/click/0879305681" rel="nofollow">SQL-99 Complete, Really</a> here in my bookshelf. It is a good book if you need to know what the standard really contains. (And yes, there is a newer version since SQL-99, but noone seems to care.)</p> <p><b>EDIT:</b> Actually, there is not just <em>one</em> newer version since SQL-99, but <em>three</em>: SQL:2003, SQL:2006, and SQL:2008. And still noone seems to care. Actually, many don't even care about SQL-99, so SQL-92 is still, in a way, "the standard". </p> http://stackoverflow.com/questions/1744345/c-std-cin-error-in-while-loop/1744378#1744378 3 Answer by Thomas Padron-McCarthy for C++ STD Cin error in while loop Thomas Padron-McCarthy 2009-11-16T19:40:28Z 2009-11-16T19:53:56Z <p>Perhaps you have a newline character left in the input buffer, from an earlier input? This is a common error.</p> <p>Lets say that your program first reads an integer with <b>cin >> x</b>, and then a line with <b>getline(cin, cmdline)</b>. The user types an integer, followed by the ENTER key. The <b>cin >> x</b> will read the integer, but the ENTER key, interpreted as a newline character, will be left in the input buffer.</p> <p>When your program then goes on to read a complete line with <b>getline(cin, cmdline)</b>, it will read the very short line that consists of just that left-over newline character. This looks like the program "skips to the next read".</p> http://stackoverflow.com/questions/1738594/find-squareroot-with-a-loop/1738614#1738614 2 Answer by Thomas Padron-McCarthy for find squareroot with a loop Thomas Padron-McCarthy 2009-11-15T19:55:50Z 2009-11-15T19:55:50Z <p>There are some problems with this function, but this seems to be a very strange error to get from that code. I think you made some other error somewhere else in your program, and that error is then causing this problem.</p> http://stackoverflow.com/questions/1697363/left-recursion-in-grammar-results-in-conflicts/1697455#1697455 4 Answer by Thomas Padron-McCarthy for Left Recursion in Grammar Results in Conflicts Thomas Padron-McCarthy 2009-11-08T18:34:00Z 2009-11-08T19:47:20Z <p>EDIT:</p> <p>I have to retract my original answer. Your left-recursive grammar does <em>not</em> seem to be ambiguous, as I first thought. I think I got confused by the extra rule which is used to make a final separator optional.</p> <p>Here is a simplified version of your original, right-recursive, grammar:</p> <pre><code>list: COMMAND | COMMAND SEPARATOR | COMMAND SEPARATOR list ; </code></pre> <p>This grammar matches (if I'm not even more confused than I think, which is of course a possibility) the inputs C, CS, CSC, CSCS, CSCSC, CSCSCS, etc. That is, a sequence of SEPARATOR-separated COMMANDs, with an optional SEPARATOR at the end.</p> <p>And this is the simplified version of your left-recursive grammar, which gives a shift/reduce conflict in Bison:</p> <pre><code>list: COMMAND | COMMAND SEPARATOR | list SEPARATOR COMMAND ; </code></pre> <p>If I expanded things correctly, this grammar matches the inputs C, CS, CSC, CSSC, CSCSC, CSSCSC, etc. It is not ambiguous, but it is not equivalent to your left-recursive grammar. The list of COMMANDs can not have a SEPARATOR at the end, and the SEPARATORs between the COMMANDS can be doubled.</p> <p>I think the reason for the shift/reduce conflict is that Bison only looks one token ahead when it decides if to shift or reduce, and with the double separators that are introduced in the second grammar, it can sometimes get confused.</p> <p>If it is important that the final separator is optional, and that the grammar must be left-recursive, I would suggest re-writing it:</p> <pre><code>list: separatedlist | separatedlist SEPARATOR ; separatedlist: COMMAND | separatedlist SEPARATOR COMMAND ; </code></pre> <p>But I wouldn't worry about left or right, unless your lists are <em>really</em> long, or you intend to run your parser on very limited hardware. I don't think it matters much, on modern desktop computers.</p> http://stackoverflow.com/questions/1695847/what-is-assertvoidcast-0/1695861#1695861 2 Answer by Thomas Padron-McCarthy for what is (__ASSERT_VOID_CAST (0))? Thomas Padron-McCarthy 2009-11-08T09:31:34Z 2009-11-08T09:31:34Z <p>In the assert.h on my particular system it says:</p> <pre><code>#if defined __cplusplus &amp;&amp; __GNUC_PREREQ (2,95) # define __ASSERT_VOID_CAST static_cast&lt;void&gt; #else # define __ASSERT_VOID_CAST (void) #endif </code></pre> <p>So it's a cast to void, and the reason to use it is to avoid warnings about unsed values when NDEBUG is set to true.</p> http://stackoverflow.com/questions/1661238/how-can-a-client-gracefully-detect-when-a-server-disconnects/1665802#1665802 0 Answer by Thomas Padron-McCarthy for How can a client gracefully detect when a server disconnects? Thomas Padron-McCarthy 2009-11-03T07:40:05Z 2009-11-03T07:40:05Z <p>You haven't told us much, so I'll have to make some guesses.</p> <p>In C++, exceptions are not used like in Java or C#, where (almost) all error handling is done using exceptions. In C++, there are some other, separate, mechanisms that you also need to use.</p> <p>If you get a null pointer error in Java, Java throws a NullPointerException, which you can catch with a try-catch block. In C++, you get a segmentation fault (or not, or something else, depending on which OS you are using), which can <em>not</em> be caught by a try-catch block. It's a completely different mechanism.</p> <p>If you try to translate a text string to a number, and it doesn't work, Java throws a NumberFormatException. In C++, you have to check afterwards if it worked. A try-catch block won't help you.</p> <p>So, just enclosing your library calls in a try-catch block might not help you. If your socket library doesn't throw an exception when the server closes (and I think it is unlikely that it does), there is almost certainly some other way to check for it. Perhaps there is a returned value from a read call, that will be negative if the other end of the socket has been closed?</p> <p>And if you don't check for closed sockets, and your program keeps trying to read and work with received data, as if the socket had still been open, it is likely that the program will crash. But this crash can't be handled by try-catch either.</p> <p>So, in summary, try-catch is probably the wrong way to solve your problem, and you need to check the documentation for your socket library to see how to do it.</p> http://stackoverflow.com/questions/1657883/variable-number-of-arguments-in-c/1657906#1657906 2 Answer by Thomas Padron-McCarthy for Variable number of arguments in C++? Thomas Padron-McCarthy 2009-11-01T18:33:54Z 2009-11-01T18:33:54Z <p>As others have said, C-style varargs. But you can also do something similar with default arguments.</p> http://stackoverflow.com/questions/1656560/signal-handler-for-sigalrm-does-not-work-even-if-resetting-in-the-handler/1656649#1656649 1 Answer by Thomas Padron-McCarthy for Signal handler for SIGALRM does not work even if resetting in the handler Thomas Padron-McCarthy 2009-11-01T08:14:30Z 2009-11-01T08:37:02Z <p>According to the standard, you're really not allowed to do much in a signal handler. All you are guaranteed to be able to do in the signal-handling function, without causing undefined behavior, is to call <strong>signal</strong>, and to assign a value to a volatile static object of type the type <strong>sig_atomic_t</strong>.</p> <p>The first few times I ran this program, on Ubuntu Linux, it looked like your call to <strong>alarm</strong> in the signal handler didn't work, so the loop in main just kept running after the first alarm. When I tried it later, the program ran the signal handler a few times, and then hung. All this is consistent with undefined behavior: the program fails, sometimes, and in various more or less interesting ways.</p> <p>It is not uncommon for programs that have undefined behavior to work differently in the debugger. The debugger is a different environment, and your program and data could for example be laid out in memory in a different way, so errors can manifest themselves in a different way, or not at all.</p> <p>I got the program to work by adding a variable:</p> <pre><code>volatile sig_atomic_t got_interrupt = 0; </code></pre> <p>And then I changed your signal handler to this very simple one:</p> <pre><code>void sig_alarm(int signo) { got_interrupt = 1; } </code></pre> <p>And then I inserted the actual work into the infinite loop in main:</p> <pre><code>if (got_interrupt) { got_interrupt = 0; signal(SIGALRM, sig_alarm); struct passwd *rootptr; printf("in sig_alarm\n"); if ((rootptr = getpwnam("root")) == NULL) perror("getpwnam error"); alarm(1); } </code></pre> <p>I think the "apue" you mention is the book "Advanced Programming in the UNIX Environment", which I don't have here, so I don't know if the purpose of this example is to show that you shouldn't mess around with things inside of a signal handler, or just that signals can cause problems by interrupting the normal work of the program.</p> http://stackoverflow.com/questions/1641653/j2me-recordstore/1655239#1655239 1 Answer by Thomas Padron-McCarthy for J2ME-recordstore Thomas Padron-McCarthy 2009-10-31T18:47:14Z 2009-10-31T18:47:14Z <p>I assume that if there are no records to return, the method <strong>enumerateRecords</strong> returns an empty <strong>RecordEnumeration</strong>. That is, <strong>hasNextElement</strong> will return false the first time you call it. I guess it <em>could</em> return null, or throw an exception, but <a href="http://java.sun.com/javame/reference/apis/jsr118/" rel="nofollow">the documentation</a> doesn't mention those, so empty enumeration it seems to be.</p> <p>Don't be afraid to read the docs!</p> http://stackoverflow.com/questions/1653889/flex-output-of-a-c-file-in-real-time-via-phpflex/1654336#1654336 1 Answer by Thomas Padron-McCarthy for Flex: Output of a C file in real time via PHP+Flex? Thomas Padron-McCarthy 2009-10-31T13:04:33Z 2009-10-31T13:13:10Z <p>Can you modify the source of the C program? The reason for this behavior might be that he standard output in C is line buffered, but only if the program runs in a terminal. It will buffer larger chunks if (it thinks that) standard output is to a file or pipe. Therefore, your C program perhaps doesn't send any data until the end. You can add calls to <strong>fflush</strong> to force printing of the data:</p> <pre><code>#include &lt;unistd.h&gt; #include &lt;stdio.h&gt; int main(void) { printf("Hi!\n"); fflush(stdout); /* Add this! */ sleep(3); printf("Ho!\n"); return 0; } </code></pre> http://stackoverflow.com/questions/1654156/what-is-the-advantages-an-interpreted-language-has-over-a-compiled-language/1654200#1654200 0 Answer by Thomas Padron-McCarthy for What is the advantages an interpreted language has over a compiled language? Thomas Padron-McCarthy 2009-10-31T12:10:34Z 2009-10-31T12:10:34Z <p>It is simply easier to write an interpreter than a compiler. There is (usually) less code to write.</p> <p>To execute a program in a language, you need to (1) read the source code so you can represent it in some internal format (usually a tree), and you need (2) a run-time system. Those things are needed whether you use a compiler or an interpreter.</p> <p>If you write an interpreter for your language, it is fairly easy to add the actual execution step. If you just execute the tree representation of your program, it doesn't require much code. (But it <em>will</em> be much slower than other approaches.)</p> <p>For a compiler, you need to translate into (usually) a completely different language, and also (usually) insert infrastructure for managing program flow and resources. This is much more work.</p> http://stackoverflow.com/questions/1654143/why-might-using-a-long-long-in-c-or-c-be-a-bad-thing/1654152#1654152 8 Answer by Thomas Padron-McCarthy for Why might using a "long long" in C or C++ be a bad thing? Thomas Padron-McCarthy 2009-10-31T11:41:47Z 2009-10-31T11:41:47Z <p>Two reasons:</p> <p>You don't know how long (haha!) a long long is, so if the code assumes that it is exactly 64 bits, there could be a problem.</p> <p>If you use an old C compiler, it might not support long long.</p> http://stackoverflow.com/questions/1654076/what-does-this-build-error-mean-when-compiling-this-program/1654087#1654087 0 Answer by Thomas Padron-McCarthy for What does this build error mean when compiling this program? Thomas Padron-McCarthy 2009-10-31T11:11:07Z 2009-10-31T11:34:12Z <p>There are some problems with your code. One thing is that you've written <strong>/0</strong> instead of <strong>\0</strong>, and another one is that you are using <strong>fputc</strong> to print a string, when you should be using <strong>fputs</strong>.</p> <p>I don't know if that is what causes that "Error 1", but you can start by fixing those errors.</p> <p>EDIT:</p> <p>I haven't used this particular compiler, but every other compiler I have ever used prints more specific error messages when it finds a en error in the code. Are you sure you can't get anything more specific than "Error 1"?</p> <p>And if you can't: Does it print more specific error messages in other cases? If it does, then perhaps there is nothing wrong with your program, and the error is caused by something else, such as a full disk?</p> <p>And another idea: In your original post, there was some problems with the <strong>#include</strong> lines in the beginning, but someone edited that for you. Perhaps that wasn't a problem just in the post, but there was an error in your original program? Check those lines! (Preprocessor errors can sometimes cause strange error messages.)</p> http://stackoverflow.com/questions/1645819/c-define-64bit-on-32bit/1645840#1645840 3 Answer by Thomas Padron-McCarthy for c define 64bit on 32bit Thomas Padron-McCarthy 2009-10-29T18:58:20Z 2009-10-29T19:11:20Z <p>The number is not "stored" anywhere. It will just be inserted in the program source code where you use the macro, just as if you had written it directly. But if you want the literal itself to be of type long long, write:</p> <pre><code>#define TIMEFIXCONST 11644473600LL </code></pre> http://stackoverflow.com/questions/1645669/char-a-b-what-type-is-b-a-and-how-do-i-printf-it/1645697#1645697 2 Answer by Thomas Padron-McCarthy for char *a, *b; what type is (b-a) and how do I printf it? Thomas Padron-McCarthy 2009-10-29T18:32:22Z 2009-10-29T18:38:00Z <p>Since you haven't initialized the variables <strong>a</strong> and <strong>b</strong>, the code gives undefined behavior. But other than that, the type of <strong>b-a</strong> is <strong>ptrdiff_t</strong>, which is big enough to contain the result. If you have a modern enough C, you can printf it with <strong>%tx</strong>.</p> <p>If you don't want to use <strong>%tx</strong>, you should convert your result so it actually matches (and not just by accident) your format specifier:</p> <pre><code>printf("%lx", (unsigned long)(a-b)); </code></pre> <p>It is not inconceivable that a system could have for example a 32-bit address space, and a 32-bit ptrdiff_t, but a 64-bit long, and then your printf would fail.</p> http://stackoverflow.com/questions/1642472/why-warning-in-c-and-cant-compile-in-c/1642490#1642490 0 Answer by Thomas Padron-McCarthy for Why warning in C and can't compile in C++? Thomas Padron-McCarthy 2009-10-29T09:21:59Z 2009-10-29T09:21:59Z <p>You have declared g and h as functions. Actually, my compiler gives the error "lvalue required as left operand of assignment", and it seems strange that you could get this code to compile with just a warning?</p> <p>EDIT: Originally, the code in the question declared g and h as functions. Now they have been changed to function pointers, which will indeed just give a warning.</p> http://stackoverflow.com/questions/1642064/efficient-c-implementation-of-unix-tail/1642120#1642120 1 Answer by Thomas Padron-McCarthy for Efficient C implementation of UNIX Tail Thomas Padron-McCarthy 2009-10-29T07:31:31Z 2009-10-29T07:47:13Z <p>If the file is long, with many lines, and you only want a few lines at the end, reading all the way from the beginning of the file would probably be inefficient.</p> <p>If you want the last <strong>N</strong> lines of a large file, my suggestion for an efficient implementation would be to make a guess of a typical line length, <strong>L</strong>, and the seek to a position in the file a bit before where the first line you want would be, if they actually all were of that length. Then read the rest of the file, putting the line start positions in a fifo of length <strong>N</strong>. If there are too few lines there, make a new guess of <strong>L</strong> based on the lines you have now read, seek to a bit before your new guess of where the first line starts, and read some more. Iterate.</p> <p>Disclaimer: This is just my first idea, I haven't run any tests, and I don't know how typical implementations of "tail" are written.</p> http://stackoverflow.com/questions/1641957/is-array-name-a-pointer-in-c/1641963#1641963 10 Answer by Thomas Padron-McCarthy for Is array name a pointer in C? Thomas Padron-McCarthy 2009-10-29T06:39:08Z 2009-10-29T07:38:31Z <p>An array is an array and a pointer is a pointer, but in most cases array names are <em>converted</em> to pointers.</p> <p>Here is an array:</p> <pre><code>int a[7]; </code></pre> <p><strong>a</strong> contains space for seven integers, and you can put a value in one of them with an assignment, like this:</p> <pre><code>a[3] = 9; </code></pre> <p>Here is a pointer:</p> <pre><code>int *p; </code></pre> <p><strong>p</strong> doesn't contain any spaces for integers, but it can point to a space for an integer. We can for example set it to point to one of the places in the array <strong>a</strong>, such as the first one:</p> <pre><code>p = &amp;a[0]; </code></pre> <p>What can be confusing is that you can also write this:</p> <pre><code>p = a; </code></pre> <p>This does <em>not</em> copy the contents of the array <strong>a</strong> into the pointer <strong>p</strong> (whatever that would mean). Instead, the array name <strong>a</strong> is converted to a pointer to its first element. So that assignment does the same as the previous one.</p> <p>Now you can use p in a similar way to an array:</p> <pre><code>p[3] = 17; </code></pre> <p>The reason that this works is that the array dereferencing operator in C, "[ ]", is defined in terms of pointers. <strong>x[y]</strong> means: start with the pointer <strong>x</strong>, step <strong>y</strong> elements forward after what the pointer points to, and then take whatever is there. Using pointer arithmetic syntax, <strong>x[y]</strong> can also be written as <strong>*(x+y)</strong>.</p> <p>For this to work with a normal array, such as our <strong>a</strong>, the name <strong>a</strong> in <strong>a[3]</strong> must first be converted to a pointer (to the first element in <strong>a</strong>). Then we step 3 elements forward, and take whatever is there. In other words: take the element at position 3 in the array. (Which is the fourth element in the array, since the first one is numbered 0.)</p> <p>So, in summary, array names in a C program are (in most cases) converted to pointers. One exception is when we use the <strong>sizeof</strong> operator on an array. If <strong>a</strong> was converted to a pointer in this contest, <strong>sizeof(a)</strong> would give the size of a pointer and not of the actual array, which would be rather useless, so in that case <strong>a</strong> means the array itself.</p> http://stackoverflow.com/questions/1636701/killing-non-waiting-thread/1636872#1636872 2 Answer by Thomas Padron-McCarthy for Killing non-waiting thread Thomas Padron-McCarthy 2009-10-28T12:12:26Z 2009-10-28T12:12:26Z <p>I don't think you can do this, at least not without killing the entire MIDlet.</p> http://stackoverflow.com/questions/1626245/ld-linker-error/1626656#1626656 1 Answer by Thomas Padron-McCarthy for ld: linker error Thomas Padron-McCarthy 2009-10-26T18:52:08Z 2009-10-26T18:52:08Z <p>Versions of your compiler and linker? Perhaps your problem is related to this bug, that seems to be fixed now: <a href="http://sources.redhat.com/bugzilla/show%5Fbug.cgi?id=584" rel="nofollow">http://sources.redhat.com/bugzilla/show_bug.cgi?id=584</a>?</p> http://stackoverflow.com/questions/1620405/on-linux-could-a-process-render-another-processs-gui/1620431#1620431 1 Answer by Thomas Padron-McCarthy for On Linux, could a process render another process's GUI? Thomas Padron-McCarthy 2009-10-25T09:09:18Z 2009-10-25T09:09:18Z <p>Look at how mplayer and smplayer are implemented. mplayer decodes and shows the video, and smplayer is the (optional) GUI.</p> http://stackoverflow.com/questions/1619993/template-specialization-for-enum/1620019#1620019 3 Answer by Thomas Padron-McCarthy for Template specialization for enum Thomas Padron-McCarthy 2009-10-25T04:33:58Z 2009-10-25T04:33:58Z <p>I'm not sure if I understand your question correctly, but you can instantiate the template on specific enums:</p> <pre><code>template &lt;typename T&gt; void f(T value); enum cars { ford, volvo, saab, subaru, toyota }; enum colors { red, black, green, blue }; template &lt;&gt; void f&lt;cars&gt;(cars) { } template &lt;&gt; void f&lt;colors&gt;(colors) { } int main() { f(ford); f(red); } </code></pre> http://stackoverflow.com/questions/1613494/why-was-wchart-invented/1613529#1613529 4 Answer by Thomas Padron-McCarthy for Why was wchar_t invented? Thomas Padron-McCarthy 2009-10-23T13:42:07Z 2009-10-23T13:42:07Z <p>It is usually considered a good thing to give things such as data types <em>meaningful names</em>.</p> <p>What is best, <strong>char</strong> or <strong>int8</strong>? I think this:</p> <pre><code>char name[] = "Bob"; </code></pre> <p>is much easier to understand than this:</p> <pre><code>int8 name[] = "Bob"; </code></pre> <p>It's the same thing with <strong>wchar_t</strong> and <strong>int16</strong>.</p> http://stackoverflow.com/questions/1613230/uses-of-c-comma-operator/1613284#1613284 4 Answer by Thomas Padron-McCarthy for Uses of C comma operator Thomas Padron-McCarthy 2009-10-23T13:03:26Z 2009-10-23T13:08:41Z <p>It is sometimes used in macros, such as debug macros like this:</p> <pre><code>#define malloc(size) (printf("malloc(%d)\n", (int)(size)), malloc((size))) </code></pre> <p>(But look at <a href="http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/1594500#1594500">this horrible failure</a>, by yours truly, for what can happen when you overdo it.)</p> <p>But unless you really need it, or you are sure that it makes the code more readable and maintainable, I would recommend against using the comma operator.</p> http://stackoverflow.com/questions/1605203/a-laymans-term-for-identifying-relationship/1607087#1607087 2 Answer by Thomas Padron-McCarthy for a layman's term for identifying relationship Thomas Padron-McCarthy 2009-10-22T13:13:27Z 2009-10-22T13:25:33Z <p>I think <b>belongs to</b> would be a good name for the identifying relationship.</p> <p>A "weak entity type" does not have its own key, just a "partial key", so each entity instance of this weak entity type has to belong to some other entity instance so it can be identified, and this is an "identifying relationship". For example, a landlord could have a database with <b>apartments</b> and <b>rooms</b>. A <b>room</b> can be called <b>kitchen</b> or <b>bathroom</b>, and while that name is unique within an apartment, there will be many rooms in the database with the name <b>kitchen</b>, so it is just a partial key. To uniquely identify a room in the database, you need to say that it is the <b>kitchen</b> in <i>this</i> particular apartment. In other words, the rooms <strong>belong to</strong> apartments.</p> http://stackoverflow.com/questions/1601201/c-struct-initialization-using-labels-it-works-but-how-documentation/1601249#1601249 2 Answer by Thomas Padron-McCarthy for C struct initialization using labels. It works, but how? Documentation? Thomas Padron-McCarthy 2009-10-21T14:36:09Z 2009-10-21T14:45:36Z <p>It's not really "labeled statements", but a way to give initial values to the named fields in the struct.</p> <p>Gcc gives a warning about "obsolete use of designated initializer with ':'", and in C99 you should instead write:</p> <pre><code> TEST_STRUCT test = { .second = 2, .first = 1 }; </code></pre> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/1594500#1594500 6 Answer by Thomas Padron-McCarthy for What is the worst real-world macros/pre-processor abuse you've ever come across? Thomas Padron-McCarthy 2009-10-20T13:08:09Z 2009-10-20T13:08:09Z <p>I did the following myself, and I think I learned something from it.</p> <p>In 1992 or so I wrote a small Lisp interpreter. It wasn't implemented in normal C, but in an interpreted C-like language. This C-like language used the standard C pre-processor, though.</p> <p>The Lisp interpreter of course contained the functions <strong>car</strong>, which is used in Lisp to return the first element in a list, and <strong>cdr</strong>, which returns the rest of the list. They were implemented like this:</p> <pre><code>LISPID car(LISPID id) { CHECK_CONS("car", 1, id); return cons_cars[id - CONS_OFFSET]; } /* car */ LISPID cdr(LISPID id) { CHECK_CONS("cdr", 1, id); return cons_cdrs[id - CONS_OFFSET]; } /* cdr */ </code></pre> <p>(Data were stored in arrays, since there were no structs. <strong>CONS_OFFSET</strong> is the constant 1000.)</p> <p><strong>car</strong> and <strong>cdr</strong> are used frequently in Lisp, and are short, and since function calls weren't very fast in the implementation language, I optimized my code by implementing those two Lisp functions as macros:</p> <pre><code>#define car(id) (CHECK_CONS("car", 1, (id)), cons_cars[(id) - CONS_OFFSET]) #define cdr(id) (CHECK_CONS("car", 1, (id)), cons_cdrs[(id) - CONS_OFFSET]) </code></pre> <p><strong>CHECK_CONS</strong> checks that its argument actually is a list, and since that one is also used frequently in the interpreter, and is short, I wrote that one too as a macro:</p> <pre><code>#define CHECK_CONS(fun, pos, arg) \ (!IS_CONS(arg) ? \ LISP_ERROR("Arg " + pos + " to " + fun + \ " must be a list: " + lispid2string(arg)) : 0) </code></pre> <p><strong>IS_CONS</strong> and <strong>LISP_ERROR</strong> were also used frequently, so I made them into macros too:</p> <pre><code>#define IS_CONS(id) \ ( intp(id) &amp;&amp; (id) &gt;= CONS_OFFSET \ &amp;&amp; ((id) - CONS_OFFSET) &lt; sizeof(cons_cars)) #define LISP_ERROR(str) (throw((str) + "\n")) </code></pre> <p>Seems reasonable?</p> <p>But then, why did the entire system crash on this line:</p> <pre><code>id2 = car(car(car(car((id1)))); </code></pre> <p>I worked a long time to find the problem, until I finally checked what that short line was expanded to by the pre-processor. It was expanded to a 31370-character line, which I have here split into lines (502 of them) for clarity:</p> <pre><code>id2 = ((!(intp( (((!(intp( (((!(intp( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &amp;&amp; ( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &gt;= 1000 &amp;&amp; (( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])))) + "\n")) : 0), cons_cars[(((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])) - 1000]))) &amp;&amp; ( (((!(intp( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &amp;&amp; ( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &gt;= 1000 &amp;&amp; (( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])))) + "\n")) : 0), cons_cars[(((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])) - 1000]))) &gt;= 1000 &amp;&amp; (( (((!(intp( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &amp;&amp; ( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &gt;= 1000 &amp;&amp; (( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])))) + "\n")) : 0), cons_cars[(((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])) - 1000]))) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (((!(intp( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &amp;&amp; ( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &gt;= 1000 &amp;&amp; (( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])))) + "\n")) : 0), cons_cars[(((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])) - 1000])))) + "\n")) : 0), cons_cars[(((!(intp( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &amp;&amp; ( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &gt;= 1000 &amp;&amp; (( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])))) + "\n")) : 0), cons_cars[(((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])) - 1000])) - 1000]))) &amp;&amp; ( (((!(intp( (((!(intp( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &amp;&amp; ( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &gt;= 1000 &amp;&amp; (( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])))) + "\n")) : 0), cons_cars[(((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])) - 1000]))) &amp;&amp; ( (((!(intp( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &amp;&amp; ( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &gt;= 1000 &amp;&amp; (( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])))) + "\n")) : 0), cons_cars[(((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])) - 1000]))) &gt;= 1000 &amp;&amp; (( (((!(intp( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &amp;&amp; ( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &gt;= 1000 &amp;&amp; (( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])))) + "\n")) : 0), cons_cars[(((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])) - 1000]))) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (((!(intp( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &amp;&amp; ( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &gt;= 1000 &amp;&amp; (( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])))) + "\n")) : 0), cons_cars[(((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])) - 1000])))) + "\n")) : 0), cons_cars[(((!(intp( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &amp;&amp; ( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &gt;= 1000 &amp;&amp; (( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])))) + "\n")) : 0), cons_cars[(((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])) - 1000])) - 1000]))) &gt;= 1000 &amp;&amp; (( (((!(intp( (((!(intp( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &amp;&amp; ( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &gt;= 1000 &amp;&amp; (( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])))) + "\n")) : 0), cons_cars[(((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])) - 1000]))) &amp;&amp; ( (((!(intp( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &amp;&amp; ( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &gt;= 1000 &amp;&amp; (( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])))) + "\n")) : 0), cons_cars[(((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])) - 1000]))) &gt;= 1000 &amp;&amp; (( (((!(intp( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &amp;&amp; ( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &gt;= 1000 &amp;&amp; (( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])))) + "\n")) : 0), cons_cars[(((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])) - 1000]))) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (((!(intp( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &amp;&amp; ( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &gt;= 1000 &amp;&amp; (( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])))) + "\n")) : 0), cons_cars[(((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])) - 1000])))) + "\n")) : 0), cons_cars[(((!(intp( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &amp;&amp; ( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &gt;= 1000 &amp;&amp; (( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])))) + "\n")) : 0), cons_cars[(((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])) - 1000])) - 1000]))) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (((!(intp( (((!(intp( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &amp;&amp; ( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &gt;= 1000 &amp;&amp; (( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])))) + "\n")) : 0), cons_cars[(((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])) - 1000]))) &amp;&amp; ( (((!(intp( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &amp;&amp; ( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &gt;= 1000 &amp;&amp; (( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])))) + "\n")) : 0), cons_cars[(((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])) - 1000]))) &gt;= 1000 &amp;&amp; (( (((!(intp( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &amp;&amp; ( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &gt;= 1000 &amp;&amp; (( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])))) + "\n")) : 0), cons_cars[(((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])) - 1000]))) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (((!(intp( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &amp;&amp; ( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &gt;= 1000 &amp;&amp; (( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])))) + "\n")) : 0), cons_cars[(((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])) - 1000])))) + "\n")) : 0), cons_cars[(((!(intp( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &amp;&amp; ( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &gt;= 1000 &amp;&amp; (( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])))) + "\n")) : 0), cons_cars[(((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000])) - 1000])) - 1000])))) + "\n")) : 0), cons_cars[(((!(intp( (((!(intp( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &amp;&amp; ( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) &gt;= 1000 &amp;&amp; (( (((!(intp( (id1)) &amp;&amp; ( (id1)) &gt;= 1000 &amp;&amp; (( (id1)) - 1000) &lt; sizeof(cons_cars)) ? (throw(("Arg " + 1 + " to " + "car" + " must be a list: " + lispid2string( (id1))) + "\n")) : 0), cons_cars[(id1) - 1000]))) - 1000) &lt; sizeof(cons_cars)) </code></pre> http://stackoverflow.com/questions/1828782/strategy-for-avoiding-a-common-sql-development-error-misleading-result-on-join-b Comment by Thomas Padron-McCarthy on Strategy for avoiding a common sql development error (misleading result on join bug) Thomas Padron-McCarthy 2009-12-01T20:45:32Z 2009-12-01T20:45:32Z Different start values was the idea I had. But now I can't write that answer... :) http://stackoverflow.com/questions/1822332/how-to-sniff-the-number-of-records-in-a-binary-file-before-reading-into-an-array/1822366#1822366 Comment by Thomas Padron-McCarthy on How to sniff the number of records in a binary file before reading into an array in the C programming language? Thomas Padron-McCarthy 2009-11-30T21:07:47Z 2009-11-30T21:07:47Z +1 for feof. You should use the return value from the read instead. http://stackoverflow.com/questions/1790204/in-c-is-i1-atomic/1790241#1790241 Comment by Thomas Padron-McCarthy on In C is "i+=1;" atomic? Thomas Padron-McCarthy 2009-11-24T15:36:05Z 2009-11-24T15:36:05Z The <i>two</i> C / C++ language_s_! http://stackoverflow.com/questions/1787996/c-library-function-to-do-sort/1788048#1788048 Comment by Thomas Padron-McCarthy on C library function to do sort Thomas Padron-McCarthy 2009-11-24T05:56:22Z 2009-11-24T05:56:22Z What is _tmain? http://stackoverflow.com/questions/1763616/ignore-initialization-from-incompatible-pointer-type-warnings/1763659#1763659 Comment by Thomas Padron-McCarthy on Ignore "initialization from incompatible pointer type" warnings? Thomas Padron-McCarthy 2009-11-19T15:49:32Z 2009-11-19T15:49:32Z @Timn: Yes, on most (all?) systems today, all pointers are of the same size, and on such a system the assembler will probably be the same. But it is not guaranteed by the standard, so next year or so someone at Intel might decide that splitting the address space into segments with different-sized pointers will make it more efficient, and then void pointers might be 64 bits while your struct pointers might be 32 bits. And your code will break. You will then have a hard time finding the problem, since you've either hidden it with explicit casts, or turned off the warnings... :) http://stackoverflow.com/questions/1763616/ignore-initialization-from-incompatible-pointer-type-warnings/1763669#1763669 Comment by Thomas Padron-McCarthy on Ignore "initialization from incompatible pointer type" warnings? Thomas Padron-McCarthy 2009-11-19T15:42:09Z 2009-11-19T15:42:09Z Another comment: From what I remember from reading the standard, void* is guaranteed to be able to hold a pointer to any data object, but there is no guarantee that it can hold function pointers. http://stackoverflow.com/questions/1763616/ignore-initialization-from-incompatible-pointer-type-warnings/1763669#1763669 Comment by Thomas Padron-McCarthy on Ignore "initialization from incompatible pointer type" warnings? Thomas Padron-McCarthy 2009-11-19T15:41:09Z 2009-11-19T15:41:09Z @Nicholaz: Agreed about what type casts mean here. But, on the other hand, you need to be really sure that you actually <i>do</i> know what you are doing, and if someone ports this to some architecture with different-size pointers (near! far!) then perhaps you no longer know... So, why not do it the <i>right</i> way, the way that perhaps not God but at least the ANSI committee intended! http://stackoverflow.com/questions/1763616/ignore-initialization-from-incompatible-pointer-type-warnings/1763669#1763669 Comment by Thomas Padron-McCarthy on Ignore "initialization from incompatible pointer type" warnings? Thomas Padron-McCarthy 2009-11-19T15:07:45Z 2009-11-19T15:07:45Z I don't think this is such a good idea. The function that you actually call will not match the prototype used in the call, which can be a dangerous thing to do. The cast here hides that possible problem even better than turning off the warnings, and a possible problem isn't something you <i>want</i> to hide. http://stackoverflow.com/questions/1737634/c-comma-operator/1737650#1737650 Comment by Thomas Padron-McCarthy on C comma operator Thomas Padron-McCarthy 2009-11-15T14:32:04Z 2009-11-15T14:32:04Z Evaluated at runtime? This sounds really strange. http://stackoverflow.com/questions/1737634/c-comma-operator/1737645#1737645 Comment by Thomas Padron-McCarthy on C comma operator Thomas Padron-McCarthy 2009-11-15T14:31:15Z 2009-11-15T14:31:15Z My gcc (4.3.3), with no flags, doesn't accept it. http://stackoverflow.com/questions/1686434/question-about-file-seeking-position/1687118#1687118 Comment by Thomas Padron-McCarthy on Question about file seeking position.. Thomas Padron-McCarthy 2009-11-11T08:22:20Z 2009-11-11T08:22:20Z @Macroideal: You, yourself, should #define _FILE_OFFSET_BITS, in your .c file, before any #includes. http://stackoverflow.com/questions/1699484/performance-of-the-c-code/1699496#1699496 Comment by Thomas Padron-McCarthy on Performance of the c code Thomas Padron-McCarthy 2009-11-09T07:14:37Z 2009-11-09T07:14:37Z I have experienced that the profiling code that is compiled into the executable can affect the measurements, so I would definitely run without profiling too, and just measure times. http://stackoverflow.com/questions/1697363/left-recursion-in-grammar-results-in-conflicts/1697455#1697455 Comment by Thomas Padron-McCarthy on Left Recursion in Grammar Results in Conflicts Thomas Padron-McCarthy 2009-11-08T19:47:53Z 2009-11-08T19:47:53Z I've added a suggestion for a updated grammar. http://stackoverflow.com/questions/1697363/left-recursion-in-grammar-results-in-conflicts/1697455#1697455 Comment by Thomas Padron-McCarthy on Left Recursion in Grammar Results in Conflicts Thomas Padron-McCarthy 2009-11-08T19:30:52Z 2009-11-08T19:30:52Z @Kyle: Yes, it's not ambiguous. I've changed my answer. But now it's not much of an answer. http://stackoverflow.com/questions/1697363/left-recursion-in-grammar-results-in-conflicts Comment by Thomas Padron-McCarthy on Left Recursion in Grammar Results in Conflicts Thomas Padron-McCarthy 2009-11-08T18:22:59Z 2009-11-08T18:22:59Z Can you post a minimal example where you observe this effect? I don't think it works that way, and my guess is that you have some other problem with your grammar. Bison shouldn't have a problem with left or right recursion, even if left recursion is more efficient.