User - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T12:25:41Z http://stackoverflow.com/feeds/user/35989 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1808760/what-is-the-most-interesting-server-name-you-have-seen/1808773#1808773 0 Answer by chrisharris. for What is the most interesting server name you have seen? chrisharris. 2009-11-27T13:26:50Z 2009-11-27T13:26:50Z <p>EvonneGoolagong</p> http://stackoverflow.com/questions/1779694/what-is-the-shortest-source-code-you-have-seen-to-do-a-complex-task/1786458#1786458 0 Answer by chrisharris. for What is the shortest source code you have seen to do a complex task? chrisharris. 2009-11-23T22:19:50Z 2009-11-23T22:19:50Z <p>qrpff - which is a 6-line perl program that cracks CSS DVD encryption - is pretty impressive. The idea was to make it short enough to use in an email signature.</p> <p><a href="http://en.wikipedia.org/wiki/Qrpff" rel="nofollow">http://en.wikipedia.org/wiki/Qrpff</a></p> http://stackoverflow.com/questions/1785205/can-you-define-a-comment-in-c/1785241#1785241 1 Answer by chrisharris. for Can you #define a comment in C? chrisharris. 2009-11-23T18:58:56Z 2009-11-23T20:23:15Z <p>The standard way is to use </p> <pre><code>#ifndef DEBUG #define printd(fmt, ...) do { } while(0) #else #define printd(fmt, ...) printf(fmt, __VA_ARGS__) #endif </code></pre> <p>That way, when you add a semi-colon on the end, it does what you want. As there is no operation the compiler will compile out the "do...while"</p> http://stackoverflow.com/questions/1743538/should-i-document-my-private-methods/1743879#1743879 0 Answer by chrisharris. for Should I document my private methods? chrisharris. 2009-11-16T18:09:59Z 2009-11-16T18:09:59Z <p>Only if you have got nothing better to do. Therefore - probably - no.</p> http://stackoverflow.com/questions/1738790/build-management-in-c-good-ides-on-linux/1738803#1738803 1 Answer by chrisharris. for Build management in C++ & good IDEs on Linux chrisharris. 2009-11-15T20:58:03Z 2009-11-15T20:58:03Z <p>Eclipse does C++ as well - through eclipse CDT - not as comprehensive as Java but pretty good.</p> http://stackoverflow.com/questions/1736560/c-prototype-scope/1736591#1736591 0 Answer by chrisharris. for C Prototype scope chrisharris. 2009-11-15T04:48:33Z 2009-11-15T05:15:09Z <p>Two - let's make that three - obvious reasons for having parameter names in function prototypes:</p> <ul> <li>Names indicate the purpose of each parameter.</li> <li>Names let you refer to the parameters more easily in API documentation (e.g. in Doxygen).</li> <li>You can more easily generate the prototypes (cut and paste, or automate) from the definitions.</li> </ul> http://stackoverflow.com/questions/1725923/how-bad-is-it-to-use-dynamic-datastuctures-on-an-embedded-system/1726006#1726006 3 Answer by chrisharris. for how bad is it to use dynamic datastuctures on an embedded system? chrisharris. 2009-11-12T23:00:56Z 2009-11-12T23:00:56Z <p>There are a number of reasons not to use malloc (or equivalent) in an embedded system.</p> <ul> <li>As you mentioned, it is important that you do not suddenly find yourself out of memory.</li> <li>Fragmentation - embedded systems can run for years which can cause a severe waste of memory due to fragmentation.</li> <li>Not really required. Dynamic memory allocation allows you to reuse the same memory to do different things at different times. Embedded systems tend to do the same thing all the time (except at startup).</li> <li>Speed. Dynamic memory allocation is either relatively slow (and gets slower as the memory gets fragmented) or is fairly wasteful (e.g. buddy system).</li> <li>If you are going to use the same dynamic memory for different threads and interrupts then allocation/freeing routines need to perform locking which can cause problems servicing interrupts fast enough.</li> <li>Dynamic memory allocation makes it very difficult to debug, especially with some of the limited/primitive debug tools available on embedded system. If you statically allocate stuff then you know where stuff is all the time which means it is much easier to inspect the state of something.</li> </ul> <p>Best of all - if you do not dynamically allocate memory then you can't get memory leaks.</p> http://stackoverflow.com/questions/1724594/x86-assembly-whats-the-main-prologue-and-epilogue/1725293#1725293 5 Answer by chrisharris. for x86 Assembly: What's the main prologue and epilogue? chrisharris. 2009-11-12T20:50:57Z 2009-11-12T20:50:57Z <p>The initialisation isn't generated by the c compiler, it is part of the c library (which makes it easier to tailor for each OS/processor).</p> <p>The code in question is normally very simple on windows/unixy systems - typically does a bit of library initialisation (opens STDIN, STDOUT, STDERR, sets timezone etc), sets up the environment, processes the command line for passing to main; catches the return from main() and calls exit etc.</p> <p>The start up code in most c libraries is in a file called crt0.c, crt1.c or something similar (crt = c run time).</p> <p>On more primitive or bare systems it will also set up the stack and other registers and clear the BSS data area - in this case it would often be in assembler (typically crt0.S).</p> <p>Here is a link to the BSD c startup code - <a href="http://www.koders.com/c/fid7F59ADB79853E5793678702CFA3F4244408EE842.aspx" rel="nofollow" title="crt0.c">link text</a></p> <p>And the start up code for mingw for windows is in crt1.c here - <a href="http://mingw.cvs.sourceforge.net/viewvc/mingw/runtime/" rel="nofollow">http://mingw.cvs.sourceforge.net/viewvc/mingw/runtime/</a></p> http://stackoverflow.com/questions/1706245/kernel-threads-and-posix-library/1724843#1724843 0 Answer by chrisharris. for Kernel threads and POSIX library chrisharris. 2009-11-12T19:42:07Z 2009-11-12T19:42:07Z <p>You can't.</p> <p>pthreads are for use in userland processes not the kernel. kernel threads are far more "lightweight" than pthreads (e.g. have very small fixed length stacks). kthread_create is used to create kernel threads in linux.</p> http://stackoverflow.com/questions/1720290/what-is-so-wrong-with-having-statement-expression-delimiters-like-semicolons-in/1720615#1720615 1 Answer by chrisharris. for What is so wrong with having statement/expression delimiters, like semicolons, in a language? chrisharris. 2009-11-12T07:56:37Z 2009-11-12T07:56:37Z <p>The main reason why semicolons, parentheses and curly brackets are not used (as much) in modern languages is because they are no longer needed as much (and the program inventors needed some way of making their language stand out from the many languages based on the c-syntax).</p> <p>Some way of explicitly delimiting blocks, expressions and statements was needed for a number of historical reasons.</p> <ul> <li>With a maximum of 80x25 characters on screen you often had no choice about where to break long lines. Also putting multiple related statements or conditional expression + statement on one line was common to fit more on the screen.</li> <li>Use of the c preprocessor pretty much screwed up any idea of using layout to indicate code structure.</li> <li>the compiler had much less CPU and memory at its disposal. Having explicit indicators allowed for reasonable compiler error messages without too much overhead.</li> <li>Some languages were (or at least started off as) teaching languages or came from academia, and explicitly showing the program structure was one of their aims.</li> </ul> <p>Historically interactive languages have generally favoured using explicit delimiters less than compiled languages.</p> <ul> <li>The interactive nature makes it seem like giving a warning or error is like telling somebody off and it can be very frustrating for the user to continually be told off for missing off a semi-colon, especially when - 99.9% of the time - the thing wasn't needed in the first place.</li> <li>Using a line editor to go back to near the beginning of a line to put in that extra parenthesis that you now find you need would lead to utter frustration.</li> </ul> http://stackoverflow.com/questions/1720420/visual-studio-why-are-line-numbers-off-by-default/1720440#1720440 4 Answer by chrisharris. for Visual Studio - why are line numbers off by default? chrisharris. 2009-11-12T07:08:21Z 2009-11-12T07:08:21Z <p>A far as I am concerned line numbers are just more screen clutter - I don't see any point in them.</p> <p>What do you want them for? You're not programming in some 1980s version of BASIC are you?</p> http://stackoverflow.com/questions/1693575/how-can-i-test-my-driver-is-loaded-and-then-access-my-driver-functions-from-the/1718191#1718191 1 Answer by chrisharris. for How can I test my driver is loaded, and then access my driver functions from the linux kernel? chrisharris. 2009-11-11T21:25:00Z 2009-11-11T21:25:00Z <p>The other possibility is to use <code>EXPORT_SYMBOL(functionCall);</code> in your module which will make your function appear in the kernel symbol table. You can then use <code>find_symbol("functionCall", blah, blah)</code> to check whether the symbol exists and to find its value/location dynamically.</p> <p>See linux/kernel/module.c and module.h</p> http://stackoverflow.com/questions/1707810/clear-code-for-counting-from-0-to-255-using-8-bit-datatype/1707951#1707951 4 Answer by chrisharris. for clear code for counting from 0 to 255 using 8-bit datatype chrisharris. 2009-11-10T13:24:59Z 2009-11-10T13:24:59Z <p>What's wrong with the obvious?</p> <pre><code>i = 255; do { work(); } while (i--); </code></pre> http://stackoverflow.com/questions/1699766/what-happens-to-older-software-engineers/1699867#1699867 2 Answer by chrisharris. for what happens to older software engineers? chrisharris. 2009-11-09T09:03:16Z 2009-11-09T09:03:16Z <p>In some fields the problem is that there are no young programmers. Certainly in the real time and embedded sector, universities and colleges are no longer turning out what the industry needs. The last four programmers we recruited were over 40 even though we are trying to get in some young blood - not everybody can be technical team leader.</p> <p>And although we have to use C, perl, Linux (and other old stuff) for our main programming tasks we are more or less totally free to use whatever we like for developing test and development support tools.</p> <p>I am 53 (and by no means the oldest) and regularly program in c, python, javascript and am using the very latest - not yet released - video/graphics hardware.</p> http://stackoverflow.com/questions/1695678/reading-from-a-block-device-in-kernel-space/1696643#1696643 2 Answer by chrisharris. for Reading from a block device in kernel space chrisharris. 2009-11-08T13:49:26Z 2009-11-08T13:49:26Z <p>If you really absolutely must then use the <code>filp_open</code>, <code>filp_close</code>, <code>vfs_read</code> and <code>vfs_write</code> functions.</p> <p>The description for for filp_open states "This is the helper to open a file from kernelspace if you really have to. But in generally you should not do this, so please move along, nothing to see here.."</p> <p>There is an excellent article "Driving Me Nuts - Things You Never Should Do in the Kernel" at <a href="http://www.linuxjournal.com/article/8110" rel="nofollow">http://www.linuxjournal.com/article/8110</a></p> http://stackoverflow.com/questions/1696086/whats-the-best-way-to-get-the-length-of-the-decimal-representation-of-an-int-in/1696212#1696212 6 Answer by chrisharris. for What's the best way to get the length of the decimal representation of an int in C++? chrisharris. 2009-11-08T12:14:21Z 2009-11-08T12:22:12Z <pre><code>numdigits = snprintf(NULL, 0, "%d", num); </code></pre> http://stackoverflow.com/questions/1620636/iphone-lot-of-noise-in-audio-file/1620647#1620647 0 Answer by chrisharris. for iPhone - lot of noise in audio file chrisharris. 2009-10-25T11:11:33Z 2009-10-25T11:11:33Z <p>Your tests for 65535 and -65536 are incorrect (would need 17 bits). Try 32767 and -32768.</p> http://stackoverflow.com/questions/1409002/in-git-and-subversion-how-do-i-find-out-the-current-user-at-the-terminal/1409067#1409067 3 Answer by chrisharris. for In Git and Subversion, how do I find out the current user at the terminal? chrisharris. 2009-09-11T05:03:47Z 2009-09-11T05:03:47Z <p>Presumably you are after the git user name that will be attached to any commits:</p> <pre><code>$ git config user.name Wilbert Wilbert $ git config --list user.name=Wilbert Wilbert user.email=wilbertwilbert@gmale.com color.status=auto color.branch=auto ... </code></pre> <p>Keys might appear more than once because Git reads from several files (/etc/gitconfig and ~/.gitconfig, for example). Git uses the last value for each key it sees.</p> http://stackoverflow.com/questions/1372408/whats-the-name-of-this-game/1380447#1380447 2 Answer by chrisharris. for Whats the name of this game? chrisharris. 2009-09-04T16:59:06Z 2009-09-04T16:59:06Z <p>The game has been around a long, long, time as Bulls and Cows with a computer version - moo - being written in the 1960s. Mastermind was a commercial version of the game "invented" in the 1970s.</p> <p><a href="http://en.wikipedia.org/wiki/Bulls%5Fand%5Fcows" rel="nofollow">http://en.wikipedia.org/wiki/Bulls_and_cows</a> </p> <p>I happen to know that the game was built into a few embedded systems in the 70s and early 80s - including an oil pipeline control system and the first commercial digital recording desk ;-)</p> http://stackoverflow.com/questions/1371701/c-memory-management-error/1371740#1371740 5 Answer by chrisharris. for C memory management error? chrisharris. 2009-09-03T06:44:52Z 2009-09-03T06:44:52Z <p>You are attempting to free the middle of your array.</p> <pre><code>Fragment *fragment = &amp;frags[i]; ... ... /* to do : free fragment */ free (fragment); fragment = NULL; </code></pre> http://stackoverflow.com/questions/1354084/real-time-pitch-detection/1354218#1354218 3 Answer by chrisharris. for Real time pitch detection chrisharris. 2009-08-30T16:22:53Z 2009-08-30T16:22:53Z <p>I had a similar problem with microphone input on a project I did a few years back - turned out to be due to a DC offset.</p> <p>Make sure you remove any bias before attempting FFT or whatever other method you are using.</p> <p>It is also possible that you are running into headroom or clipping problems.</p> <p>Graphs are the best way to diagnose most problems with audio.</p> http://stackoverflow.com/questions/1320661/how-to-load-data-from-file-to-string-array/1320975#1320975 2 Answer by chrisharris. for how to load data from file to string array? chrisharris. 2009-08-24T07:48:08Z 2009-08-24T07:48:08Z <p>There are so many problems with that code:</p> <ul> <li>'const' is a reserved word - use a different name.</li> <li>The declaration of the file is wrong.</li> <li>You haven't told the program what the file name is.</li> <li>You haven't opened the file</li> <li>Where is append_test_data set?</li> <li>The strcmp test is wrong.</li> <li>You have declared constraint to be MAX_PARAMETER but are reading 500 chars (how are the two related?)</li> <li>etc etc</li> </ul> <p>You have much to learn, grasshopper.</p> <p>I suggest that you first learn how to open a file, read each line (and print it out) and then close the file when you have finished with it. Print out any errors encountered at each stage.</p> <p>Then worry about doing the logic of the program.</p> http://stackoverflow.com/questions/1315373/programmatically-extract-keywords-from-domain-names/1315418#1315418 3 Answer by chrisharris. for Programmatically extract keywords from domain names chrisharris. 2009-08-22T07:45:34Z 2009-08-22T07:45:34Z <p>choosespain.com kidsexpress.com childrenswear.com dicksonweb.com</p> <p>Have fun (and a good lawyer) if you are going to try to parse the url with a dictionary.</p> <p>You might do better if you can find the same characters but separated by white space on their web site.</p> <p>Other possiblities: extract data from ssl certificate; query top level domain name server; Access the domain name server (TLD); or use one of the "whois" tools or services (just google "whois").</p> http://stackoverflow.com/questions/1315292/static-const-vs-const-in-a-function-that-repeatedly-called/1315363#1315363 0 Answer by chrisharris. for static const vs const in a function that repeatedly called chrisharris. 2009-08-22T07:02:31Z 2009-08-22T07:02:31Z <p>For a basic type, such as an integer value, then I would pigeon hole the use of static as a "premature optimisation" unless you have done some benchmarking and taken into account the various trade offs (for example initialising a static to a non-zero value often requires an entry in a table to specify the position, size and initial value to be set when the code is loaded).</p> <p>Unless you are taking a pointer to the int and it is dereferenced after your function returns then you don't need the static - let the compiler do the optimisation.</p> <p>If a pointer to the value is dereferenced after your function has exited then I would class it as a persistent state variable and it would be good practice to define it at at the class or module level to make that clear.</p> http://stackoverflow.com/questions/1249352/why-do-we-always-declare-constants-to-be-powers-of-2/1249618#1249618 1 Answer by chrisharris. for Why do we always declare constants to be powers of 2? chrisharris. 2009-08-08T18:52:32Z 2009-08-08T19:00:46Z <p>When it comes to array sizes I suspect there are two reasons why powers of two are favoured. One - as evidenced by several replies here - is that programmers who don't know what is going on "under the hood" seem to have a general sense that it might somehow be more efficient to use a power of two. The other is (mostly historical now) to do with cyclic buffers.</p> <p>Cyclic buffers that are powers of two can be handled more easily and faster using masks can on the read and write indices (or pointers) rather than using the normally slower modulo operation or using conditions that require branches. This was crucial on older machines but can still be important for transferring large amounts data - e.g. graphics processing</p> <p>For example, in C, the the number of bytes available to be read in a cyclic buffer can be obtained by:</p> <pre><code>pending = (SIZE + wr - rd) &amp; (SIZE - 1); </code></pre> <p>If not using power of two then the equivalent would be:</p> <pre><code>pending = (SIZE + wr - rd) % (SIZE - 1); </code></pre> <p>On machines that don't implement a division/modulus instruction that little "%" could take several hundred cycles, so you would need something like:</p> <pre><code>if (wr &gt;= rd) pending = wr - rd; else pending = (SIZE + wr) - rd; </code></pre> <p>Which clutters the code and causes branching which can stall the instruction pipeline.</p> <p>Writing to the buffer which was something like </p> <pre><code>buf[wr++] = x; if (wr == SIZE) rd = 0; </code></pre> <p>becomes the (generally) more efficient:</p> <pre><code>buf[wr++] = x; wr &amp;= SIZE-1; </code></pre> <p>Of course if you used an unsigned 8 bit variable to index a 256 entry array then you didn't even need to do the masking.</p> http://stackoverflow.com/questions/1232951/are-there-good-patterns-idioms-for-data-translation-transformation/1233007#1233007 1 Answer by chrisharris. for Are there good Patterns/Idioms for Data Translation/Transformation? chrisharris. 2009-08-05T12:41:36Z 2009-08-05T12:41:36Z <p>Years ago I would have immediately said look at Bison <a href="http://www.gnu.org/software/bison/" rel="nofollow">http://www.gnu.org/software/bison/</a> or Yacc but I haven't done anything like this for some time so don't know if there is anything better.</p> <p>Using them might be a bit over the top for what you are doing but the idioms used might be useful.</p> http://stackoverflow.com/questions/1183063/filter-c-through-a-perl-script/1183120#1183120 2 Answer by chrisharris. for Filter C++ through a perl script? chrisharris. 2009-07-25T21:30:49Z 2009-07-25T21:30:49Z <p>GCC allows you to use your own preprocessor. You could set your script as the preprocessor then run the output through cpp (the normal gcc pre-processor). Look at the gcc manual for -B and -no-integrated-cpp command line options.</p> <p>Warning - I have never tried it myself so don't know how messy it might be (bear in mind though that for many years lots of languages, including C++, were implemented as preprocessors to a c compiler so support shouldn't be too bad).</p> http://stackoverflow.com/questions/1168274/real-world-uses-for-obfuscation/1169017#1169017 0 Answer by chrisharris. for Real world uses for obfuscation chrisharris. 2009-07-23T00:42:32Z 2009-07-23T00:42:32Z <p>Obfuscation is not going to beat a determined hacker or protect your top secret algorithm but in most cases that is not the point. Traditionally it only needed to be good enough to make a company pay for software support and updates rather than taking the effort to de-obfuscate and maintain the software themselves.</p> <p>I first came across obfuscation in the early days of Unix when most C programs had to be delivered in source form because of the plethora of different cpu architectures and the lack of clever linkers or common object file formats.</p> <p>With the rise of interpreted languages obfuscation is now probably used more than ever for commercial software.</p> http://stackoverflow.com/questions/1164652/printing-name-and-value-of-a-define/1168515#1168515 4 Answer by chrisharris. for Printing name and value of a define chrisharris. 2009-07-22T21:53:10Z 2009-07-22T21:53:10Z <p>As long as you are willing to put up with the fact that SOMESTRING=SOMESTRING indicates that SOMESTRING has not been defined (view it as the token has not been redefined!?!), then the following should do:</p> <pre><code>#include &lt;stdio.h&gt; #define STR(x) #x #define SHOW_DEFINE(x) printf("%s=%s\n", #x, STR(x)) #define CHARLIE -6 #define FRED 1 #define HARRY FRED #define NORBERT ON_HOLIDAY #define WALLY int main() { SHOW_DEFINE(BERT); SHOW_DEFINE(CHARLIE); SHOW_DEFINE(FRED); SHOW_DEFINE(HARRY); SHOW_DEFINE(NORBERT); SHOW_DEFINE(WALLY); return 0; } </code></pre> <p>The output is:</p> <pre><code>BERT=BERT CHARLIE=-6 FRED=1 HARRY=1 NORBERT=ON_HOLIDAY WALLY= </code></pre> http://stackoverflow.com/questions/1135841/c-multiline-string-literal/1135861#1135861 0 Answer by chrisharris. for C++ multiline string literal chrisharris. 2009-07-16T07:00:18Z 2009-07-16T07:00:18Z <pre><code>const char * myreply = "I don't really" "understand what" "your problem is."; </code></pre> http://stackoverflow.com/questions/1798027/asynchronous-memcpy-in-linux/1798145#1798145 Comment by on asynchronous memcpy in linux ? 2009-11-25T16:51:50Z 2009-11-25T16:51:50Z @Sunny Shah, You should be looking at a zero copy solution perhaps using shared memory? Why are you copying such big chunks of memory around? http://stackoverflow.com/questions/1785205/can-you-define-a-comment-in-c/1785229#1785229 Comment by on Can you #define a comment in C? 2009-11-23T19:05:48Z 2009-11-23T19:05:48Z I think that that is possibly one of the worst pieces of advice I have ever read. http://stackoverflow.com/questions/1774898/how-to-automatically-start-a-pc-using-c/1774902#1774902 Comment by on how to automatically start a PC using c 2009-11-21T09:20:47Z 2009-11-21T09:20:47Z What if hibernate was used instead of total shut down; would this avoid the BIOS? http://stackoverflow.com/questions/1770081/initialising-arrays-in-c/1770136#1770136 Comment by on Initialising arrays in C++ 2009-11-20T13:14:50Z 2009-11-20T13:14:50Z What have you actually measured in the -O2 case? Probably that the optimizer can entirely remove code that has no effect - so what? How is that helpful or relevant? http://stackoverflow.com/questions/1770081/initialising-arrays-in-c/1770095#1770095 Comment by on Initialising arrays in C++ 2009-11-20T12:53:51Z 2009-11-20T12:53:51Z memset isn't a short operation if the amount of memory being set is large. Unnecessarily initialising a large array that is within a loop can be a real performance killer. http://stackoverflow.com/questions/1763082/recovering-from-stack-overflow-on-mac-os-x Comment by on Recovering from stack overflow on Mac OS X 2009-11-19T13:15:49Z 2009-11-19T13:15:49Z Are you constrained to use the process stack as the VM stack, or does your VM implement its own stack? http://stackoverflow.com/questions/1762508/client-server-integer-always-received-as-1-c-programming/1762745#1762745 Comment by on Client/Server: Integer always received as 1 (C-programming) 2009-11-19T12:22:07Z 2009-11-19T12:22:07Z I suspect that this is the cause of the problem. Even if it isn't it is still plain wrong. http://stackoverflow.com/questions/1748856/inconsistent-results-from-printf-with-long-long-int Comment by on Inconsistent results from printf with long long int? 2009-11-17T13:39:51Z 2009-11-17T13:39:51Z Most compilers will give a warning for the error you made - did you just ignore it? Or do you not have warnings turned on? They are there for a reason. http://stackoverflow.com/questions/1746715/is-there-a-name-set-for-characters-that-can-be-typed-using-a-standard-english-k/1746724#1746724 Comment by on Is there a name / set for characters that can be typed using a standard english keyboard? 2009-11-17T07:23:05Z 2009-11-17T07:23:05Z My english keyboard has lots of characters that are not ASCII &#172; ` &#166; And - being a proper english keyboard - it also has &#163; which is not ASCII. http://stackoverflow.com/questions/1746715/is-there-a-name-set-for-characters-that-can-be-typed-using-a-standard-english-k Comment by on Is there a name / set for characters that can be typed using a standard english keyboard? 2009-11-17T07:21:30Z 2009-11-17T07:21:30Z I wasn't aware that there was a &quot;standard english keyboard&quot; - for example different keyboards are used in the US and Britain. http://stackoverflow.com/questions/1738671/pass-enums-by-value-or-reference Comment by on Pass enums by value or reference? 2009-11-15T20:49:47Z 2009-11-15T20:49:47Z enums are often used as a way of defining constants, RED, BLUE, ON, OFF etc. If you think about how you would pass a constant to your function then you could probably come to the solution to your question yourself. http://stackoverflow.com/questions/1734954/math-overflow-handling-large-numbers Comment by on Math Overflow -- Handling Large Numbers 2009-11-14T17:41:44Z 2009-11-14T17:41:44Z As others have pointed out - you don't need big number support for what you are trying to do. But if you do want to use them, many modern(ish) languages have big numbers built in. Libraries exist for many others (C, C++ etc). What language are you using or thinking of using? http://stackoverflow.com/questions/1734003/something-wrong-with-my-gdb-or-kdevelop-ide Comment by on Something wrong with my gdb or KDevelop IDE? 2009-11-14T15:07:05Z 2009-11-14T15:07:05Z Have you tried doing what it said you have to do? - Check the settings on /dev/tty* and /dev/pty* As root you may need to &quot;chmod ug+rw&quot; tty* and pty* devices and/or add the user to the tty group using &quot;usermod -G tty username&quot;. http://stackoverflow.com/questions/1726302/removing-spaces-from-a-string-in-c/1726315#1726315 Comment by on Removing Spaces from a String in C? 2009-11-13T00:11:38Z 2009-11-13T00:11:38Z That isn't c - c doesn't have string types. http://stackoverflow.com/questions/1722687/can-i-execute-any-c-made-prog-without-any-os-platform/1725335#1725335 Comment by on Can i execute any c made prog without any os platform??? 2009-11-12T21:33:29Z 2009-11-12T21:33:29Z I've run c on systems (8051 based) with as little as 128 bytes of RAM (that's 128 bytes, not kilobytes or megabytes) and that included the stack space. Obviously no room for an OS there.