User Trent - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T10:46:58Zhttp://stackoverflow.com/feeds/user/9083http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1104922/compiler-test-cases-or-how-to-test-a-compiler/1104946#11049464Answer by Trent for Compiler test cases or how to test a compilerTrent2009-07-09T16:19:40Z2009-07-09T16:19:40Z<p>There are several compiler test suites out there. We've had some luck using the <a href="http://www.plumhall.com/suites.html" rel="nofollow">Plum Hall</a> test suite for a C compiler. It consists of a large set of C code specifically written to test against the language standard. It verifies that the compiler can handle the language syntax and semantics. </p>
http://stackoverflow.com/questions/1075405/two-c-syntax-tidbits-no-init-for-and-char-w4-vs-char-w4/1075429#10754291Answer by Trent for Two C syntax tidbits: no init for and char *w[4] vs char w[4]Trent2009-07-02T16:40:17Z2009-07-02T16:40:17Z<p>There is nothing special about a for loop without an initial condition. The condition will still be checked at the beginning of each loop to determine if it should continue and the last expression will still be executed at the end of each iteration.</p>
<p>The for loop in your question:</p>
<pre><code>for (; *p == *q; p++, q++)
</code></pre>
<p>will loop as long as what p and q are pointing to are the equivalent. For example, if p and q are both char * that point to strings, this will loop until the first difference is found in the strings.</p>
http://stackoverflow.com/questions/922256/c-array-shuffle/922284#9222841Answer by Trent for C++ Array ShuffleTrent2009-05-28T17:48:35Z2009-05-28T18:35:42Z<p>You declared deck as an array of pointers but you didn't allocate any space for it. If you de-reference it without allocating space you will get a seg-fault. </p>
http://stackoverflow.com/questions/922248/is-there-any-real-risk-to-deriving-from-the-c-stl-containers/922329#9223293Answer by Trent for Is there any real risk to deriving from the C++ STL containers?Trent2009-05-28T17:58:14Z2009-05-28T17:58:14Z<p>Also, in most cases, you should prefer membership over inheritance if possible.</p>
http://stackoverflow.com/questions/918236/interesting-scope-problem-explanation/918239#9182393Answer by Trent for Interesting Scope Problem, Explanation?Trent2009-05-27T22:05:50Z2009-05-27T22:05:50Z<p>The scope of your second 'foo' starts at its declaration and continues until the end of the block it is declared in. When you call free(foo) it is acting on the first 'foo' because the second foo has not been declared yet.</p>
<p>After declaring the second 'foo' there is no way to access the outer 'foo'. You have essentially masked the name.</p>
http://stackoverflow.com/questions/899917/why-do-people-use-enums-in-c-as-constants-while-they-can-use-const/900144#9001441Answer by Trent for Why do people use enums in C++ as constants while they can use const?Trent2009-05-22T21:48:38Z2009-05-22T21:48:38Z<p>Some debuggers will show the enumeration name instead of its value when debugging. This can be very helpful. I know that I would rather see <code>day_of_week = MONDAY</code> than <code>day_of_week = 1</code>.</p>
http://stackoverflow.com/questions/798919/most-readable-way-to-write-simple-conditional-check/798954#7989545Answer by Trent for Most readable way to write simple conditional checkTrent2009-04-28T17:09:12Z2009-04-28T17:09:12Z<p>Note that option 1 does not allow for short circuiting behavior. That is, you calculate the value of all of the conditionals before evaluating the result of the first.</p>
http://stackoverflow.com/questions/794244/how-should-i-correct-this-code-that-causes-value-computed-not-used-warning/794277#7942772Answer by Trent for How should I correct this code that causes "value computed not used" warning?Trent2009-04-27T16:31:31Z2009-04-27T16:31:31Z<p>Initialize myMin and myMax with DBL_MAX and DBL_MIN respectively and get rid of the first time through the loop check.</p>
http://stackoverflow.com/questions/722150/sprintf-outcome-problem/722157#7221577Answer by Trent for sprintf outcome problemTrent2009-04-06T16:13:58Z2009-04-06T16:13:58Z<p>The 4 in %04d sets the total width of the printed value</p>
http://stackoverflow.com/questions/721861/in-case-of-integer-overflows-what-is-the-result-of-unsigned-int-int-unsig/722100#7221001Answer by Trent for In case of integer overflows what is the result of (unsigned int) * (int) ? unsigned or int?Trent2009-04-06T15:58:58Z2009-04-06T15:58:58Z<p>For C, refer to "Usual arithmetic conversions" (C99: Section 6.3.1.8, ANSI C K&R A6.5) for details on how the operands of the mathematical operators are treated.</p>
<p>In your example the following rules apply:</p>
<p>C99:</p>
<blockquote>
<p>Otherwise, if the type of the operand
with signed integer type can represent
all of the values of the type of the
operand with unsigned integer type,
then the operand with unsigned integer
type is converted to the type of the
operand with signed integer type.</p>
<p>Otherwise, both operands are converted
to the unsigned integer type
corresponding to the type of the
operand with signed integer type.</p>
</blockquote>
<p>ANSI C:</p>
<blockquote>
<p>Otherwise, if either operand is unsigned int, the other is converted to unsigned int.</p>
</blockquote>
http://stackoverflow.com/questions/706721/how-do-i-pass-a-method-as-a-parameter-in-python/706749#7067491Answer by Trent for How do I pass a method as a parameter in pythonTrent2009-04-01T18:13:07Z2009-04-01T18:13:07Z<p>Here is your example re-written to show a stand-alone working example:</p>
<pre><code>class Test:
def method1(self):
return 'hello world'
def method2(self, methodToRun):
result = methodToRun()
return result
def method3(self):
return self.method2(self.method1)
test = Test()
print test.method3()
</code></pre>
http://stackoverflow.com/questions/683942/whats-wrong-with-my-file-dependencies/683950#6839502Answer by Trent for What's wrong with my file dependencies?Trent2009-03-25T23:35:51Z2009-03-25T23:50:12Z<p>You need a forward declaration for class Foo. For more information refer to item 31 of "Effective C++, Third Edition". Note: if you forward declare Foo that means your class Moo will only be able to have pointers of type Foo.</p>
<p>If something includes Foo.h this is what happens (the arrows show dependency):</p>
<p>Foo.h --includes--> mainHeader.h --includes--> Moo.h --includes--> Foo.h</p>
<p>Note that when class Moo is specified the second Foo.h is not included due to your guards, also class Foo has not been declared yet because that happens after including mainheader.h</p>
http://stackoverflow.com/questions/678033/how-to-avoid-code-duplication-between-similar-isrs/678072#6780722Answer by Trent for How to avoid code duplication between similar ISRs?Trent2009-03-24T15:58:32Z2009-03-24T15:58:32Z<p>If they are handling the same type of device it's quite reasonable to have just one interrupt handler handling multiple interrupts. You could check which flag was set at the top and continue on from there. However, I wouldn't recommend this if the two interrupt handlers are for different types of devices and just have the same logic flow.</p>
http://stackoverflow.com/questions/668280/whats-the-most-efficient-way-to-make-bitwise-operations-in-a-c-array/668288#6682880Answer by Trent for What's the most efficient way to make bitwise operations in a C arrayTrent2009-03-20T22:54:08Z2009-03-20T22:54:08Z<p>Iterate over each array in a loop applying the desired operator and storing the result in a new array.</p>
http://stackoverflow.com/questions/643427/what-word-processor-do-you-use-for-technical-papers/643644#6436440Answer by Trent for What word processor do you use for technical papers?Trent2009-03-13T16:51:59Z2009-03-13T16:51:59Z<p>I like <a href="http://www.docbook.org/" rel="nofollow">DocBook</a> and use <a href="http://xmlgraphics.apache.org/fop/" rel="nofollow">FOP</a> to create PDFs from it.</p>
http://stackoverflow.com/questions/640657/whats-the-difference-between-c-and-c/640853#6408531Answer by Trent for What's the difference between C and C++Trent2009-03-12T23:12:34Z2009-03-12T23:12:34Z<p>Another feature C++ has over C is exception handling in the form of throw ... catch.</p>
http://stackoverflow.com/questions/636865/whats-the-best-programming-language-to-use-on-a-sucky-computer/636875#6368752Answer by Trent for What's the best programming language to use on a sucky computer?Trent2009-03-12T00:11:51Z2009-03-12T00:11:51Z<p>This will depend on your target application really. If you are building small programs in order to learn a programming language it doesn't really matter how "sucky" your development machine is.</p>
http://stackoverflow.com/questions/631273/function-pointers-callbacks-c/631336#6313360Answer by Trent for function pointers callbacks CTrent2009-03-10T17:11:33Z2009-03-10T17:11:33Z<p>Registering a callback means that you are specifying which function should be called when the event of interest occurs. Basically you are setting the function pointer when registering a callback.</p>
http://stackoverflow.com/questions/617358/get-optarg-as-a-c-string-object/617364#6173646Answer by Trent for Get optarg as a C++ string objectTrent2009-03-06T00:54:17Z2009-03-06T00:54:17Z<p>You told printf that you were suppling a c style string (null terminated array of chars) when specifying %s, but you provided a string class instead. Assuming you are using std::string try:</p>
<pre><code>printf("bar : %s\n", bar.c_str());
</code></pre>
http://stackoverflow.com/questions/616318/what-is-the-best-way-to-implement-precomputed-data/616336#6163361Answer by Trent for What is the best way to implement precomputed data?Trent2009-03-05T19:45:11Z2009-03-05T19:45:11Z<p>Create a program that outputs valid C# code which initializes your lookup tables. Make this part of your build process so that it will automatically create the source file and then build the rest of your project.</p>
http://stackoverflow.com/questions/608856/magic-numbers-vs-named-constants/608866#6088662Answer by Trent for Magic numbers vs named constantsTrent2009-03-04T00:58:21Z2009-03-04T00:58:21Z<p>I tend to use constants over magic numbers almost exclusively. I think it increases readably and gives you one point in the program to fix any errors. There are several magic '60's, for example: 60 seconds in a minute, 60 minutes in an hour.</p>
http://stackoverflow.com/questions/608631/header-files-in-c-and-c/608636#6086362Answer by Trent for Header Files in C and C++Trent2009-03-03T23:08:53Z2009-03-03T23:08:53Z<p>Generally there will be one .h file for each .c/.cpp file.</p>
http://stackoverflow.com/questions/608196/why-should-i-capitalize-my-sql-keywords/608201#60820135Answer by Trent for Why should I capitalize my SQL keywords?Trent2009-03-03T21:11:12Z2009-03-03T21:11:12Z<p>I think the latter is more readable. You can easily separate the keywords from table and column names, etc.</p>
http://stackoverflow.com/questions/608175/what-does-this-error-mean-error-expected-specifier-qualifier-list-before-type/608185#60818510Answer by Trent for What does this error mean: "error: expected specifier-qualifier-list before 'type_name'"?Trent2009-03-03T21:07:06Z2009-03-03T21:07:06Z<p>The compiler doesn't know that spe_context_ptr_t is a type. Check that the appropriate typedef is in scope when this code is compiled. You may have forgotten to include the appropriate header file.</p>
http://stackoverflow.com/questions/607348/c-arrays-and-unbroken-lists/607364#6073643Answer by Trent for C Arrays and unbroken listsTrent2009-03-03T17:35:14Z2009-03-03T17:35:14Z<p>One problem you have is that you compare count with 3 too early. Wait until you see a change in the bitstream. Try a while loop until the bit flips then compare the count.</p>
http://stackoverflow.com/questions/187455/counting-array-elements-in-python/187463#18746320Answer by Trent for Counting array elements in PythonTrent2008-10-09T14:14:56Z2008-10-09T14:14:56Z<p>len(myArray)</p>
http://stackoverflow.com/questions/180549/learn-c-first-before-learning-objective-c/180575#1805751Answer by Trent for Learn C first before learning Objective-CTrent2008-10-07T21:44:27Z2008-10-07T21:44:27Z<p>According to <a href="http://en.wikipedia.org/wiki/Objective-C" rel="nofollow">Wikipedia</a>, Objective-C is a strict super-set of C. This being the case, I would suggest learning C first. Then when you learn Objective-C it will be clear what parts are added as part of Objective-C.</p>
http://stackoverflow.com/questions/179213/c-include-semantics/179262#1792621Answer by Trent for C++ #include semanticsTrent2008-10-07T16:17:33Z2008-10-07T16:17:33Z<p>I'll tackle the second part of your question:</p>
<p>I normally use <code><project/libHeader.h></code> when I am including headers from a 3rd party. And <code>"myHeader.h"</code> when including headers from within the project.</p>
<p>The reason I use <code><project/libHeader.h></code> instead of <code><libHeader.h></code> is because it's possible that more than one library has a "libHeader.h" file. In order to include them both you need the library name as part of the included filename.</p>
http://stackoverflow.com/questions/174461/why-is-stack-overflow-so-microsoft-centric/174484#1744842Answer by Trent for Why is Stack Overflow so Microsoft-centric?Trent2008-10-06T14:25:43Z2008-10-06T14:25:43Z<p>Although C is a very popular language I'm not surprised it is only ranked 16th. There are plenty of long standing forums and places to get information about C. </p>
http://stackoverflow.com/questions/174449/to-stl-or-stl-that-is-the-question/174467#1744673Answer by Trent for To STL or !STL, that is the question...Trent2008-10-06T14:22:41Z2008-10-06T14:22:41Z<p>I think it's a typical build vs buy scenario. However, I think that in this case I would almost always 'buy', and use STL - or a better solution (something from Boost perhaps), before rolling my own. You should be focusing most of your effort on what your application does, not the building blocks it uses.</p>
http://stackoverflow.com/questions/1146048/omitting-arguments-in-c-templatesComment by Trent on Omitting arguments in C++ TemplatesTrent2009-07-17T23:32:09Z2009-07-17T23:32:09Z@ Ed Swangren, The "just try it" method is very uninformative. At best it tells you that a particular compiler allows the given syntax. It tells you nothing about the semantics or correctness of the statement with regards to the language standard.http://stackoverflow.com/questions/922256/c-array-shuffle/922284#922284Comment by Trent on C++ Array ShuffleTrent2009-05-28T18:35:12Z2009-05-28T18:35:12Z@Everett yes, that is fine. but as n8wrl has pointed out in his answer: you probably don't want an array of pointers to begin with. Possibly a pointer to an array: Card (* deck)[deckSize]http://stackoverflow.com/questions/922248/is-there-any-real-risk-to-deriving-from-the-c-stl-containers/922329#922329Comment by Trent on Is there any real risk to deriving from the C++ STL containers?Trent2009-05-28T18:30:13Z2009-05-28T18:30:13Z@Thomas L Holaday Of course not; perhaps I should clarify. If you aren't going to be specializing the base class but merely need to use the base class features in your class (as in the example) it is better to have a private member of that class in your class. All the other benefits listed in the question are gained simply by having a class not that fact that it inherited from any other particular class.http://stackoverflow.com/questions/151587/how-do-i-disable-tortoise-bzr/364875#364875Comment by Trent on How do I disable Tortoise BZR?Trent2009-05-28T18:01:29Z2009-05-28T18:01:29ZI agree, 'hg' is much easier to type than 'bzr', but I don't think its THAT bad.http://stackoverflow.com/questions/922256/c-array-shuffle/922288#922288Comment by Trent on C++ Array ShuffleTrent2009-05-28T17:54:21Z2009-05-28T17:54:21Zre: random numbers. This sound like pretty marginal advise at best.http://stackoverflow.com/questions/922256/c-array-shuffle/922284#922284Comment by Trent on C++ Array ShuffleTrent2009-05-28T17:52:08Z2009-05-28T17:52:08Z@yz I'm, not sure someone who doesn't "quite understand function parameters with pointers and references" realizes that allocating space for a pointer is part of "initializing" it.http://stackoverflow.com/questions/918236/interesting-scope-problem-explanation/918288#918288Comment by Trent on Interesting Scope Problem, Explanation?Trent2009-05-27T22:32:36Z2009-05-27T22:32:36ZThis answer is very C++ specific. The question is also tagged with C and objective-C.http://stackoverflow.com/questions/918236/interesting-scope-problem-explanation/918242#918242Comment by Trent on Interesting Scope Problem, Explanation?Trent2009-05-27T22:28:00Z2009-05-27T22:28:00Z@Josh Thanks for the clarification. 'foo' in the example clearly cannot be a global variable - I didn't expand on that in my early comment. http://stackoverflow.com/questions/918236/interesting-scope-problem-explanation/918242#918242Comment by Trent on Interesting Scope Problem, Explanation?Trent2009-05-27T22:17:52Z2009-05-27T22:17:52ZWhich compiler/language allows ::foo to access the outer foo? I am not familiar with that in standard C or C++. Not sure about objective-C but I don't think it's allowed there either.http://stackoverflow.com/questions/911660/how-could-this-c-fragment-be-written-more-safely/913610#913610Comment by Trent on How could this C fragment be written more safely?Trent2009-05-27T17:19:07Z2009-05-27T17:19:07Z@Aaron As mentioned before, strdup() is not ANSI, it will not exist on all systems. The point of this answer can be applied when you write your own version of strdup(). http://stackoverflow.com/questions/13128/how-to-combine-several-c-c-libraries-into-one/22041#22041Comment by Trent on How to combine several C/C++ libraries into one?Trent2009-05-22T22:01:11Z2009-05-22T22:01:11ZNo, you do not link when you create "your static lib.a". Linking is only performed when creating the final executable. This is precisely the reason the question was asked.http://stackoverflow.com/questions/798612/syntax-for-dereferencing-a-pointer-in-c-or-cComment by Trent on Syntax for dereferencing a pointer in C (or C++)Trent2009-04-28T16:01:21Z2009-04-28T16:01:21ZIn #2, the last element, member, should also be accessed using ->http://stackoverflow.com/questions/794132/returning-an-object-vs-returning-a-tuple/794200#794200Comment by Trent on Returning an object vs returning a tupleTrent2009-04-27T16:22:03Z2009-04-27T16:22:03ZI thought a mantra of Python was "Namespaces are one honking great idea -- let's do more of those!". Isn't a class better than just a group of related functions (that operate of tuples) better in this regard? Why do you have a requirement of state for a class? BTW, I am new to Python but I thought the idea of creating classes was a good thing -- not something to be avoided.http://stackoverflow.com/questions/686470/my-return-type-is-meaningless-why/686558#686558Comment by Trent on My return type is meaningless, why?Trent2009-03-26T16:39:02Z2009-03-26T16:39:02ZFrom the question: "pointer than cannot be changed, and ... the thing it points to to not be changed either." He declared the return type correctly based on his intentions. http://stackoverflow.com/questions/686470/my-return-type-is-meaningless-whyComment by Trent on My return type is meaningless, why?Trent2009-03-26T16:24:52Z2009-03-26T16:24:52ZWhich compiler and compilation flags are you using?