User Robert Gamble - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T16:53:32Z http://stackoverflow.com/feeds/user/25222 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1766125/is-modulelicense-in-a-linux-kernel-module-legally-binding/1766243#1766243 1 Answer by Robert Gamble for Is MODULE_LICENSE in a Linux Kernel Module legally binding? Robert Gamble 2009-11-19T20:20:15Z 2009-11-19T20:20:15Z <p>No, the company seems to have made it clear what the terms of your license are and just because their module lies to the Linux kernel does not in any way impart additional rights to you not granted in their license. In addition, even if it did, the GPL itself doesn't allow this and the GPL wouldn't apply to the software anyway.</p> <p>Section 4 of the <a href="http://www.gnu.org/licenses/gpl-2.0.txt" rel="nofollow">GPL</a> states:</p> <blockquote> <p>You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. <strong>Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License.</strong> However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance.</p> </blockquote> http://stackoverflow.com/questions/1756811/does-gccs-attributepacked/1756967#1756967 9 Answer by Robert Gamble for Does GCC's __attribute__((__packed__))...? Robert Gamble 2009-11-18T15:53:33Z 2009-11-18T15:53:33Z <p>Assuming that you are asking whether the struct members will retain the order specified in their definition, the answer is yes. The Standard requires that successive members have increasing addresses:</p> <p>Section §6.7.2.1p13: </p> <blockquote> <p>Within a structure object, the non-bit-field members and the units in which bit-fields reside have addresses that increase in the order in which they are declared.</p> </blockquote> <p>and the documentation for the packed attribute clearly states that only padding/alignment is affected:</p> <blockquote> <p>The packed attribute specifies that a variable or structure field should have the smallest possible alignment—one byte for a variable, and one bit for a field, unless you specify a larger value with the aligned attribute.</p> </blockquote> http://stackoverflow.com/questions/1746254/when-creating-a-csv-file-do-you-need-to-escape-certain-characters/1746578#1746578 0 Answer by Robert Gamble for When creating a CSV file, do you need to escape certain characters? Robert Gamble 2009-11-17T04:25:20Z 2009-11-17T04:25:20Z <p>Writing CSV data is easy, the simplest way is to replace every instance of a double quote with 2 double quotes and then surround the whole thing in double quotes. Alternatively, if your data does not contain double quotes, commas, carriage returns, linefeeds, or leading/trailing space, you don't have to surround the data with quotes or worry about escaping. You can find more information <a href="http://www.creativyst.com/Doc/Articles/CSV/CSV01.htm" rel="nofollow">here</a>.</p> <p>Parsing CSV is much more complex, especially if you try to handle various forms of malformed data out there, in this case you almost certainly want to use an existing module.</p> http://stackoverflow.com/questions/1746510/opening-a-file-with-fopen/1746554#1746554 3 Answer by Robert Gamble for opening a file with fopen Robert Gamble 2009-11-17T04:18:43Z 2009-11-17T04:18:43Z <p>Well, now you know there is a problem, the next step is to figure out what exactly the error is, what happens when you compile and run this?:</p> <pre><code>#include &lt;stdio.h&gt; #include &lt;stdlib.h&gt; int main(void) { FILE *file; file = fopen("TestFile1.txt", "r"); if (file == NULL) { perror("Error"); } else { fclose(file); } } </code></pre> http://stackoverflow.com/questions/1737710/c-structs-dont-define-types/1737721#1737721 1 Answer by Robert Gamble for C structs don't define types? Robert Gamble 2009-11-15T14:53:14Z 2009-11-15T14:53:14Z <p>It doesn't work in C99, it is a C++ thing. You have to either say <code>struct Point</code> or use a typedef in C.</p> http://stackoverflow.com/questions/1630631/what-is-useful-about-this-c-syntax/1630686#1630686 1 Answer by Robert Gamble for What is useful about this C syntax? Robert Gamble 2009-10-27T13:08:26Z 2009-10-27T13:08:26Z <p>This is the original K&amp;R syntax before C was standardized in 1989. C89 introduced function prototypes, borrowed from C++, and deprecated the K&amp;R syntax. There is no reason to use it (and plenty of reasons not to) in new code.</p> http://stackoverflow.com/questions/1624480/c-terminating-the-program-by-pressing-a-key/1624503#1624503 1 Answer by Robert Gamble for C: Terminating the program by pressing a key Robert Gamble 2009-10-26T12:24:58Z 2009-10-26T12:24:58Z <p><code>getchar()</code> is standard but due to line buffering you will still need to press <code>Enter</code> before <code>getchar</code> returns.</p> http://stackoverflow.com/questions/1622196/malloc-zeroing-out-memory/1622228#1622228 9 Answer by Robert Gamble for malloc zeroing out memory? Robert Gamble 2009-10-25T21:56:47Z 2009-10-25T21:56:47Z <p><code>malloc</code> itself doesn't zero out memory but it many operating systems will zero the memory that your program requests for security reasons (to keep one process from accessing potentially sensitive information that was used by another process). </p> http://stackoverflow.com/questions/1616116/seeking-a-c-beautifier-that-will-insert-spaces-between-line-elements/1616881#1616881 3 Answer by Robert Gamble for Seeking a C Beautifier that will insert spaces between line elements. Robert Gamble 2009-10-24T03:46:05Z 2009-10-24T03:46:05Z <pre><code>indent -prs -br -i 4 file </code></pre> <p>Turns this:</p> <pre><code>#define f(x) ((x)+(x)) if((foo=bar(arg1,arg2,arg3))==NULL){ printf("Error 42"); f(42); } </code></pre> <p>Into this:</p> <pre><code>#define f(x) ((x)+(x)) if ( ( foo = bar ( arg1, arg2, arg3 ) ) == NULL ) { printf ( "Error 42" ); f ( 42 ); } </code></pre> <p>The <code>-prs</code> option puts spaces around parenthesis, the spaces around operators and after the commas come standard. The <code>-br</code> option enforces your bracing style, and <code>-i 4</code> uses 4 spaces to indent. Note that the macro definition is not modified but the call to the function-like macro in the code is (presumably what you'd want). </p> http://stackoverflow.com/questions/1616638/replace-two-or-more-spaces-within-a-text-file-with-a/1616648#1616648 3 Answer by Robert Gamble for Replace two or more spaces within a text file with a ; Robert Gamble 2009-10-24T01:00:01Z 2009-10-24T01:00:01Z <pre><code>sed -e 's/ \+/;/g' File1 &gt; File2 </code></pre> http://stackoverflow.com/questions/296738/how-can-i-parse-relative-dates-with-perl/296739#296739 16 Answer by Robert Gamble for How can I parse relative dates with Perl? Robert Gamble 2008-11-17T20:13:59Z 2009-09-06T20:29:19Z <p><a href="http://search.cpan.org/perldoc?Date%3A%3AManip" rel="nofollow">Date::Manip</a> does exactly this.</p> <p>Here is an example program:</p> <pre><code>#!/usr/bin/perl use strict; use Date::Manip; while (&lt;DATA&gt;) { chomp; print UnixDate($_, "%Y-%m-%d %H:%M:%S"), " ($_)\n"; } __DATA__ today yesterday tomorrow last Tuesday next Tuesday 1 hour ago next week </code></pre> <p>Which results in the following output:</p> <pre><code>2008-11-17 15:21:04 (today) 2008-11-16 15:21:04 (yesterday) 2008-11-18 15:21:04 (tomorrow) 2008-11-11 00:00:00 (last Tuesday) 2008-11-18 00:00:00 (next Tuesday) 2008-11-17 14:21:04 (1 hour ago) 2008-11-24 00:00:00 (next week) </code></pre> <p>UnixDate is one of the functions provided by <code>Date::Manip</code>, the first argument is a date/time in any format that the module supports, the second argument describes how to format the date/time. There are other functions that just parse these "human" dates, without formatting them, to be used in delta calculations, etc.</p> http://stackoverflow.com/questions/294562/what-does-a-college-degree-provide-that-experience-doesnt 24 What does a college degree provide that experience doesn't? Robert Gamble 2008-11-16T23:27:59Z 2009-08-19T16:50:16Z <p>A relatively large number of people in the software industry do not have college degrees compared to other industries. In my experience, many of the best programmers/software engineers are those who learned outside of college. However, many employers stress a CS degree or equivalent and some require it.</p> <p>In your experience, what do software engineers with a college degree have that is generally missing from their degree-less colleagues with equivalent experience, and how much does that set them apart in terms of job performance?</p> <p><strong>[EDIT]</strong> I know that college exposes you to a wider range of things than a single job might and that a degree might help you get a job. What I am looking for is what things engineers with degrees tend to have that is useful on the job that others don't. In other words, as a professional software engineer that is in charge of hiring, why should I care if someone has a related degree? What are they likely to bring to the table that someone without a degree is less likely to?</p> <p><strong>Note</strong>: While searching the site I found a number of related questions including <a href="http://stackoverflow.com/questions/126583/as-a-programmer-without-formal-cs-training-or-a-cs-degree-what-am-i-missing">this one</a> but none of them provided the information I am looking for.</p> http://stackoverflow.com/questions/1201593/c-subset-of-c-where-not-examples/1201622#1201622 13 Answer by Robert Gamble for "C subset of C++" -> Where not ? examples ? Robert Gamble 2009-07-29T16:52:14Z 2009-07-29T16:52:14Z <p>Wikipedia has a good summary of the differences: <a href="http://en.wikipedia.org/wiki/Compatibility%5Fof%5FC%5Fand%5FC%2B%2B" rel="nofollow">Compatibility of C and C++</a></p> http://stackoverflow.com/questions/768704/great-c-tutorial/769967#769967 1 Answer by Robert Gamble for Great C tutorial? Robert Gamble 2009-04-20T20:35:41Z 2009-04-20T20:35:41Z <p>While "The C Programming Language" is certainly a great book and a very good introduction to the C language, it has several drawbacks:</p> <ul> <li>It is somewhat dated, the 2nd edition (the last one) covers only C89 which is now 20 years old. While C99 (the current Standard) isn't universally supported, there are a number of features from it that are supported by many implementations and exposure to them is useful.</li> <li>It isn't comprehensive. It doesn't cover many of the standard library functions in any detail and certain intricacies are not explored in depth.</li> <li>The text assumes you are already an experienced programmer and has a very terse style which doesn't work well for everyone.</li> </ul> <p>If you are looking for a more beginner-friendly, comprehensive, or up-to-date book, I would strongly recommend <a href="http://rads.stackoverflow.com/amzn/click/0393979504" rel="nofollow">C Programming: A Modern Approach, 2nd Ed</a>. It covers every aspect of the language and the standard library in depth, including C99, and is extremely well-written. While the list price is rather high, it usually isn't difficult to find a copy for around $60 USD.</p> http://stackoverflow.com/questions/769621/dealing-with-commas-in-a-csv-file/769820#769820 0 Answer by Robert Gamble for Dealing with commas in a CSV file Robert Gamble 2009-04-20T19:46:30Z 2009-04-20T19:46:30Z <p>The CSV format uses commas to separate values, values which contain carriage returns, linefeeds, commas, or double quotes are surrounded by double-quotes. Values that contain double quotes are quoted and each literal quote is escaped by an immediately preceding quote: For example, the 3 values:</p> <pre><code>test list, of, items "go" he said </code></pre> <p>would be encoded as:</p> <pre><code>test,"list, of, items","""go"" he said" </code></pre> <p>Any field can be quoted but only fields that contain commas, CR/NL, or quotes <em>must</em> be quoted.</p> <p>There is no real <em>standard</em> for the CSV format but almost all applications follow the conventions documented <a href="http://www.creativyst.com/Doc/Articles/CSV/CSV01.htm" rel="nofollow">here</a>. The RFC that was mentioned elsewhere is not a standard for CSV, it is an RFC for using CSV within MIME and contains some unconventional and unnecessary limitations that make it useless outside of MIME.</p> <p>A gotcha that many CSV modules I have seen don't accomodate is the fact that multiple lines can be encoded in a single field which means you can't assume that each line is a separate record, you either need to not allow newlines in your data or be prepared to handle this.</p> http://stackoverflow.com/questions/456198/code-ordering-in-source-files-forward-declarations-vs-dont-repeat-yourself/456208#456208 6 Answer by Robert Gamble for Code Ordering in Source Files - Forward Declarations vs "Don't Repeat Yourself"? Robert Gamble 2009-01-19T00:26:28Z 2009-01-19T00:31:54Z <p>I've always used method #1, the reason being that I like to be able to quickly tell which functions are defined in a particular file and see their signatures all in one place. I don't find the argument of having to change the prototypes along with the function definition particularly convincing since you usually wind up changing all the code that calls the changed functions anyway, changing the function prototypes while you are at it seems relatively trivial.</p> http://stackoverflow.com/questions/455484/how-can-i-kill-all-shells-in-unix-at-once/455489#455489 12 Answer by Robert Gamble for How can I kill all shells in Unix at once? Robert Gamble 2009-01-18T17:15:14Z 2009-01-18T17:15:14Z <p>The <a href="http://developer.apple.com/DOCUMENTATION/Darwin/Reference/ManPages/man1/killall.1.html" rel="nofollow">killall</a> command can kill all processes with a given name:</p> <pre><code>killall bash </code></pre> http://stackoverflow.com/questions/454732/how-do-you-tell-a-client-that-their-project-or-a-portion-of-needs-a-rewrite/454746#454746 4 Answer by Robert Gamble for How do you tell a client that their project or a portion of needs a rewrite? Robert Gamble 2009-01-18T06:42:57Z 2009-01-18T06:42:57Z <p>Simply explain to your client that, because of the reasons you mentioned, it will take more more time, and thus money, to make the existing code do what they want than it will to rewrite certain pieces from scratch to meet the new needs. It's usually easier to make the case when you can present a clear financial benefit.</p> http://stackoverflow.com/questions/430182/is-c-strongly-typed/430279#430279 0 Answer by Robert Gamble for Is C strongly typed? Robert Gamble 2009-01-10T00:44:08Z 2009-01-10T00:44:08Z <p>It is difficult to provide a concrete answer when there isn't a concrete definition of "strongly typed". I would say that C is strongly typed in that every variable and every expression has a type but weakly typed in that it allows you to change types using casts and to reinterpret the representation of one type as another.</p> http://stackoverflow.com/questions/411646/how-do-you-not-do-joins/411655#411655 3 Answer by Robert Gamble for How do you not do joins? Robert Gamble 2009-01-04T20:48:31Z 2009-01-04T20:48:31Z <p>You use the <code>db.ReferenceProperty</code> to link objects, see <a href="http://blog.arbingersys.com/2008/04/google-app-engine-one-to-many-join.html" rel="nofollow">Google App Engine: One-to-many JOIN</a> for details and examples. </p> http://stackoverflow.com/questions/410437/is-stopwatch-benchmarking-acceptable/410467#410467 2 Answer by Robert Gamble for Is stopwatch benchmarking acceptable? Robert Gamble 2009-01-04T04:35:54Z 2009-01-04T04:35:54Z <p>I ran a program today that searched through and collected information from a bunch of dBase files, it took just over an hour to run. I took a look at the code, made an educated guess at what the bottleneck was, made a minor improvement to the algorithm, and reran the program, this time it completed in 2.5 minutes. I didn't need any fancy profiling tools or benchmark suites to tell me the new version was a significant improvement. If I needed to further optimize the running time I probably would have done some more sophisticated analysis but this wasn't necessary. I find that this sort of "stopwatch benchmarking" is an acceptable solution in quite a number of cases and resorting to more advanced tools would actually be more time-consuming in these cases.</p> http://stackoverflow.com/questions/409995/truncate-text-at-a-stop-character-match/410032#410032 0 Answer by Robert Gamble for Truncate Text at a Stop Character Match Robert Gamble 2009-01-03T22:45:46Z 2009-01-03T22:45:46Z <p>Although you didn't mention a language, I am going to guess Perl due to the <code>$variable</code> name. In Perl one of the easiest ways to do this is using a simple regular expression:</p> <pre><code>$sentence = 'Stack Overflow - Ask Questions Here'; if ($sentence =~ /^(.*?) - /) { print "Found match: '$1'\n"; } </code></pre> <p>This matches the first part of the string, in a non-greedy fashion, up until the first space-dash-space sequence. The parenthesis around the first part of the expression indicates that the matching part should be "captured", in Perl it will be stored in the variable $1 (other captured patterns are stored into $2, $3, etc). If a match is found, the matching part is stored into $1 and then printed.</p> http://stackoverflow.com/questions/409761/why-is-only-64kb-of-data-being-saved-in-my-mysql-data-column/409779#409779 2 Answer by Robert Gamble for Why is only 64kB of data being saved in my MySQL data column? Robert Gamble 2009-01-03T20:36:29Z 2009-01-03T20:41:36Z <p>A <code>BLOB</code> type in MySQL can store up to 65,534 bytes, if you try to store more than this much data MySQL will truncate the data. <code>MEDIUMBLOB</code> can store up to 16,777,213 bytes, and <code>LONGBLOB</code> can store up to 4,294,967,292 bytes.</p> <p>If you enable strict SQL mode (<a href="http://dev.mysql.com/doc/refman/5.0/en/server-sql-mode.html" rel="nofollow">MySQL modes</a>) you will get an error when you try to store data that doesn't fit in the column type.</p> http://stackoverflow.com/questions/196017/unique-random-numbers-in-o1/196065#196065 41 Answer by Robert Gamble for Unique random numbers in O(1)? Robert Gamble 2008-10-12T20:57:02Z 2009-01-03T18:29:15Z <p>Initialize an array of 1001 integers with the values 0-1000 and set a variable, max, to the current max index of the array (starting with 1000). Pick a random number, r, between 0 and max, swap the number at the position r with the number at position max and return the number now at position max. Decrement max by 1 and continue. When max is 0, set max back to the size of the array - 1 and start again without the need to reinitialize the array.</p> <p><strong>Update:</strong> Although I came up with this method on my own when I answered the question, after some research I realize this is a modified version of Fisher-Yates known as Durstenfeld-Fisher-Yates or Knuth-Fisher-Yates. Since the description may be a little difficult to follow, I have provided an example below (using 11 elements instead of 1001):</p> <p>Array starts off with 11 elements initialized to array[n] = n, max starts off at 10:</p> <pre><code>+--+--+--+--+--+--+--+--+--+--+--+ | 0| 1| 2| 3| 4| 5| 6| 7| 8| 9|10| +--+--+--+--+--+--+--+--+--+--+--+ ^ max </code></pre> <p>At each iteration, a random number r is selected between 0 and max, array[r] and array[max] are swapped, the new array[max] is returned, and max is decremented:</p> <pre><code>max = 10, r = 3 +--------------------+ v v +--+--+--+--+--+--+--+--+--+--+--+ | 0| 1| 2|10| 4| 5| 6| 7| 8| 9| 3| +--+--+--+--+--+--+--+--+--+--+--+ max = 9, r = 7 +-----+ v v +--+--+--+--+--+--+--+--+--+--+--+ | 0| 1| 2|10| 4| 5| 6| 9| 8| 7: 3| +--+--+--+--+--+--+--+--+--+--+--+ max = 8, r = 1 +--------------------+ v v +--+--+--+--+--+--+--+--+--+--+--+ | 0| 8| 2|10| 4| 5| 6| 9| 1: 7| 3| +--+--+--+--+--+--+--+--+--+--+--+ max = 7, r = 5 +-----+ v v +--+--+--+--+--+--+--+--+--+--+--+ | 0| 8| 2|10| 4| 9| 6| 5: 1| 7| 3| +--+--+--+--+--+--+--+--+--+--+--+ ... </code></pre> <p>After 11 iterations, all numbers in the array have been selected, max == 0, and the array elements are shuffled:</p> <pre><code>+--+--+--+--+--+--+--+--+--+--+--+ | 4|10| 8| 6| 2| 0| 9| 5| 1| 7| 3| +--+--+--+--+--+--+--+--+--+--+--+ </code></pre> <p>At this point, max can be reset to 10 and the process can continue.</p> http://stackoverflow.com/questions/402847/learning-ruby-recommended-blogs-to-read/402862#402862 6 Answer by Robert Gamble for Learning Ruby: recommended blogs to read? Robert Gamble 2008-12-31T12:12:55Z 2008-12-31T12:32:01Z <p>Reading blogs isn't the way to learn a programming language. It might be useful <em>after</em> you learn the fundamentals of the language at which point you can:</p> <ol> <li>Actually understand and make use of what you read on the blogs</li> <li>Have the foundation necessary to weed out the good stuff from the bad stuff</li> </ol> <p>I would recommend a good book to get you started, the recently released <a href="http://rads.stackoverflow.com/amzn/click/0596516177" rel="nofollow">The Ruby Programming Language</a> is probably the best one out now.</p> http://stackoverflow.com/questions/401941/worst-sql-ever/401960#401960 21 Answer by Robert Gamble for Worst SQL Ever Robert Gamble 2008-12-31T00:42:24Z 2008-12-31T00:42:24Z <pre><code>DELETE FROM table </code></pre> <p>Seen right after I typed and executed it, I had forgotten the WHERE clause. Now I always run a SELECT statement first and change the SELECT to DELETE after I am satisfied that the proper rows will be affected.</p> http://stackoverflow.com/questions/398883/how-to-set-pointer-to-a-memory-to-null-using-memset/398897#398897 11 Answer by Robert Gamble for how to set pointer to a memory to NULL using memset? Robert Gamble 2008-12-29T22:22:25Z 2008-12-30T03:37:55Z <p>Don't use <code>memset</code> to initialize a null pointer as this will set the memory to all bits zero which is not guaranteed to be the representation of a null pointer, just do this:</p> <pre><code>p_my_t = NULL; </code></pre> <p>or the equivalent:</p> <pre><code>p_my_t = 0; </code></pre> http://stackoverflow.com/questions/399396/can-you-get-db-username-pw-database-name-in-rails/399411#399411 9 Answer by Robert Gamble for Can you get DB username, pw, database name in Rails? Robert Gamble 2008-12-30T02:47:40Z 2008-12-30T03:07:53Z <p>From within rails you can create a configuration object and obtain the necessary information from it:</p> <pre><code>config = Rails::Configuration.new host = config.database_configuration[RAILS_ENV]["host"] database = config.database_configuration[RAILS_ENV]["database"] username = config.database_configuration[RAILS_ENV]["username"] password = config.database_configuration[RAILS_ENV]["password"] </code></pre> <p>See the <a href="http://edgedocs.planetargon.org/classes/Rails/Configuration.html" rel="nofollow">documentation</a> for Rails::Configuration for details.</p> <p>This just uses <a href="http://www.ruby-doc.org/core/classes/YAML.html" rel="nofollow">YAML::load</a> to load the configuration from the database configuration file (<code>database.yml</code>) which you can use yourself to get the information from outside the rails environment:</p> <pre><code>require 'YAML' info = YAML::load(IO.read("database.yml")) print info["production"]["host"] print info["production"]["database"] ... </code></pre> http://stackoverflow.com/questions/399356/splitting-a-string-on-att-ia-32-linux-assembler-gas/399363#399363 2 Answer by Robert Gamble for Splitting a string on AT&T IA-32 Linux Assembler (gas) Robert Gamble 2008-12-30T02:17:33Z 2008-12-30T02:27:07Z <p>Change the conversion specifier for <a href="http://linux.die.net/man/3/printf" rel="nofollow"><code>printf</code></a> from <code>%d</code> to <code>%c</code> to print the character instead of its ascii value.</p> http://stackoverflow.com/questions/399114/why-are-c-c-floating-point-types-so-oddly-named/399128#399128 1 Answer by Robert Gamble for Why are c/c++ floating point types so oddly named? Robert Gamble 2008-12-29T23:51:31Z 2008-12-29T23:51:31Z <p>The two most common floating point formats use 32-bits and 64-bits, the longer one is "double" the size of the first one so it was called a "double".</p> http://stackoverflow.com/questions/1766125/is-modulelicense-in-a-linux-kernel-module-legally-binding/1766243#1766243 Comment by Robert Gamble on Is MODULE_LICENSE in a Linux Kernel Module legally binding? Robert Gamble 2009-11-19T20:55:04Z 2009-11-19T20:55:04Z If the entity violating the license (by distributing the program in violation of the GPL by imposing the proprietary license) is the entity that owns the copyright then 1) the GPL wouldn't apply since you can't do that and 2) you can't violate your own copyright. http://stackoverflow.com/questions/1756811/does-gccs-attributepacked Comment by Robert Gamble on Does GCC's __attribute__((__packed__))...? Robert Gamble 2009-11-18T15:40:02Z 2009-11-18T15:40:02Z What do you mean by &quot;original ordering&quot;? Do you mean are the struct members literally in the same order as specified in the definition? http://stackoverflow.com/questions/1741368/a-language-that-doesnt-use-c/1741435#1741435 Comment by Robert Gamble on A language that doesn't use 'C' ? Robert Gamble 2009-11-16T13:21:41Z 2009-11-16T13:21:41Z That doesn't really answer the question. http://stackoverflow.com/questions/1739853/c-problems-and-solutions/1739861#1739861 Comment by Robert Gamble on C Problems and Solutions Robert Gamble 2009-11-16T03:55:02Z 2009-11-16T03:55:02Z That site is no longer maintained, the active site is <a href="http://clc-wiki.net/wiki/K%26R2_solutions" rel="nofollow">clc-wiki.net/wiki/K%26R2_solutions</a> http://stackoverflow.com/questions/1618957/is-c-faster-than-c/1618961#1618961 Comment by Robert Gamble on Is C faster than C++? Robert Gamble 2009-10-24T20:30:18Z 2009-10-24T20:30:18Z This is true but it doesn't really help answer the question. http://stackoverflow.com/questions/1596476/how-to-pass-a-function-pointer-to-a-function-with-variable-arguments-solved/1597150#1597150 Comment by Robert Gamble on How to pass a function pointer to a function with variable arguments? {SOLVED} Robert Gamble 2009-10-20T22:19:27Z 2009-10-20T22:19:27Z Actually, this is (ironically) they only time that typedefs are required. Speaking of the <i>type</i> parameter for va_arg in section 7.15.1.1 of the C Standard: &quot;The parameter type shall be a type name specified such that the type of a pointer to an object that has the specified type can be obtained simply by postfixing a * to type.&quot; This means that many non-trivial types aren't guaranteed to work, including your example, without a typedef. http://stackoverflow.com/questions/1434290/if-you-werent-a-programmer-what-would-you-be Comment by Robert Gamble on If you weren't a programmer... what would you be? Robert Gamble 2009-09-16T17:17:39Z 2009-09-16T17:17:39Z Exact Duplicate: <a href="http://stackoverflow.com/questions/443787/if-you-werent-a-programmer-what-would-you-be-doing" rel="nofollow" title="if you werent a programmer what would you be doing">stackoverflow.com/questions/443787/&hellip;</a> http://stackoverflow.com/questions/1340876/how-to-read-a-string-of-length-n-from-standard-input/1340894#1340894 Comment by Robert Gamble on How to read a string of length 'n' from Standard input Robert Gamble 2009-08-27T13:11:02Z 2009-08-27T13:11:02Z getch is not a standard function, getc/fgetc is. http://stackoverflow.com/questions/187370/unix-man-page-jokes/991598#991598 Comment by Robert Gamble on UNIX man page jokes? Robert Gamble 2009-08-26T18:13:36Z 2009-08-26T18:13:36Z More is less, less is more, but more isn't less and less isn't more. More or less. http://stackoverflow.com/questions/1223314/read-from-argv0/1223348#1223348 Comment by Robert Gamble on read from argv[0] Robert Gamble 2009-08-03T17:05:03Z 2009-08-03T17:05:03Z It isn't a mistake and I commend you (and upvoted you) because you provided a clear answer to an unclear question, taking the time to attempt to reasonably interpret the problem. I made my comment because the OP is an apparent newbie and setting good examples for error checking is important, IMHO, especially since I see so many experienced programmers fail to do so. http://stackoverflow.com/questions/1223314/read-from-argv0/1223348#1223348 Comment by Robert Gamble on read from argv[0] Robert Gamble 2009-08-03T16:47:16Z 2009-08-03T16:47:16Z Don't forget to check the return value of fopen before you attempt to read from theinput! http://stackoverflow.com/questions/1223314/read-from-argv0 Comment by Robert Gamble on read from argv[0] Robert Gamble 2009-08-03T16:40:17Z 2009-08-03T16:40:17Z It isn't clear what your question is or what you are trying to accomplish, can you clarify with a full example program that demonstrates the problem? http://stackoverflow.com/questions/1213945/linux-redhat-kernel-headers/1214058#1214058 Comment by Robert Gamble on Linux redhat kernel-headers Robert Gamble 2009-07-31T18:34:46Z 2009-07-31T18:34:46Z linux/string.h is completely different from your other string.h, the former is for the string functions used by the kernel, the latter is for the string functions provided by the standard C library. http://stackoverflow.com/questions/1213945/linux-redhat-kernel-headers Comment by Robert Gamble on Linux redhat kernel-headers Robert Gamble 2009-07-31T18:19:51Z 2009-07-31T18:19:51Z Did you try &quot;yum install kernel-headers&quot;? http://stackoverflow.com/questions/1201593/c-subset-of-c-where-not-examples/1201622#1201622 Comment by Robert Gamble on "C subset of C++" -> Where not ? examples ? Robert Gamble 2009-07-29T17:13:48Z 2009-07-29T17:13:48Z Discussion verbiage not withstanding, the information appears to be accurate and fairly complete. I didn't see anything that was wrong and the only thing I can think of off the top of my head that I didn't see there was the difference between &quot;int func();&quot; and &quot;int func(void);&quot; which mean two different things in C but are the same in C++.