User - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T12:25:41Zhttp://stackoverflow.com/feeds/user/35989http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1808760/what-is-the-most-interesting-server-name-you-have-seen/1808773#18087730Answer by chrisharris. for What is the most interesting server name you have seen?chrisharris.2009-11-27T13:26:50Z2009-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#17864580Answer by chrisharris. for What is the shortest source code you have seen to do a complex task?chrisharris.2009-11-23T22:19:50Z2009-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#17852411Answer by chrisharris. for Can you #define a comment in C?chrisharris.2009-11-23T18:58:56Z2009-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#17438790Answer by chrisharris. for Should I document my private methods?chrisharris.2009-11-16T18:09:59Z2009-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#17388031Answer by chrisharris. for Build management in C++ & good IDEs on Linuxchrisharris.2009-11-15T20:58:03Z2009-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#17365910Answer by chrisharris. for C Prototype scopechrisharris.2009-11-15T04:48:33Z2009-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#17260063Answer by chrisharris. for how bad is it to use dynamic datastuctures on an embedded system?chrisharris.2009-11-12T23:00:56Z2009-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#17252935Answer by chrisharris. for x86 Assembly: What's the main prologue and epilogue?chrisharris.2009-11-12T20:50:57Z2009-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#17248430Answer by chrisharris. for Kernel threads and POSIX librarychrisharris.2009-11-12T19:42:07Z2009-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#17206151Answer by chrisharris. for What is so wrong with having statement/expression delimiters, like semicolons, in a language?chrisharris.2009-11-12T07:56:37Z2009-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#17204404Answer by chrisharris. for Visual Studio - why are line numbers off by default?chrisharris.2009-11-12T07:08:21Z2009-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#17181911Answer 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:00Z2009-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#17079514Answer by chrisharris. for clear code for counting from 0 to 255 using 8-bit datatypechrisharris.2009-11-10T13:24:59Z2009-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#16998672Answer by chrisharris. for what happens to older software engineers?chrisharris.2009-11-09T09:03:16Z2009-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#16966432Answer by chrisharris. for Reading from a block device in kernel spacechrisharris.2009-11-08T13:49:26Z2009-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#16962126Answer 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:21Z2009-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#16206470Answer by chrisharris. for iPhone - lot of noise in audio filechrisharris.2009-10-25T11:11:33Z2009-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#14090673Answer by chrisharris. for In Git and Subversion, how do I find out the current user at the terminal?chrisharris.2009-09-11T05:03:47Z2009-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#13804472Answer by chrisharris. for Whats the name of this game?chrisharris.2009-09-04T16:59:06Z2009-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#13717405Answer by chrisharris. for C memory management error?chrisharris.2009-09-03T06:44:52Z2009-09-03T06:44:52Z<p>You are attempting to free the middle of your array.</p>
<pre><code>Fragment *fragment = &frags[i];
...
...
/* to do : free fragment */
free (fragment);
fragment = NULL;
</code></pre>
http://stackoverflow.com/questions/1354084/real-time-pitch-detection/1354218#13542183Answer by chrisharris. for Real time pitch detectionchrisharris.2009-08-30T16:22:53Z2009-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#13209752Answer by chrisharris. for how to load data from file to string array?chrisharris.2009-08-24T07:48:08Z2009-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#13154183Answer by chrisharris. for Programmatically extract keywords from domain nameschrisharris.2009-08-22T07:45:34Z2009-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#13153630Answer by chrisharris. for static const vs const in a function that repeatedly calledchrisharris.2009-08-22T07:02:31Z2009-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#12496181Answer by chrisharris. for Why do we always declare constants to be powers of 2?chrisharris.2009-08-08T18:52:32Z2009-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) & (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 >= 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 &= 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#12330071Answer by chrisharris. for Are there good Patterns/Idioms for Data Translation/Transformation?chrisharris.2009-08-05T12:41:36Z2009-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#11831202Answer by chrisharris. for Filter C++ through a perl script?chrisharris.2009-07-25T21:30:49Z2009-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#11690170Answer by chrisharris. for Real world uses for obfuscationchrisharris.2009-07-23T00:42:32Z2009-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#11685154Answer by chrisharris. for Printing name and value of a definechrisharris.2009-07-22T21:53:10Z2009-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 <stdio.h>
#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#11358610Answer by chrisharris. for C++ multiline string literalchrisharris.2009-07-16T07:00:18Z2009-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#1798145Comment by on asynchronous memcpy in linux ?2009-11-25T16:51:50Z2009-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#1785229Comment by on Can you #define a comment in C?2009-11-23T19:05:48Z2009-11-23T19:05:48ZI 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#1774902Comment by on how to automatically start a PC using c2009-11-21T09:20:47Z2009-11-21T09:20:47ZWhat if hibernate was used instead of total shut down; would this avoid the BIOS?http://stackoverflow.com/questions/1770081/initialising-arrays-in-c/1770136#1770136Comment by on Initialising arrays in C++2009-11-20T13:14:50Z2009-11-20T13:14:50ZWhat 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#1770095Comment by on Initialising arrays in C++2009-11-20T12:53:51Z2009-11-20T12:53:51Zmemset 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-xComment by on Recovering from stack overflow on Mac OS X2009-11-19T13:15:49Z2009-11-19T13:15:49ZAre 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#1762745Comment by on Client/Server: Integer always received as 1 (C-programming)2009-11-19T12:22:07Z2009-11-19T12:22:07ZI 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-intComment by on Inconsistent results from printf with long long int?2009-11-17T13:39:51Z2009-11-17T13:39:51ZMost 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#1746724Comment by on Is there a name / set for characters that can be typed using a standard english keyboard?2009-11-17T07:23:05Z2009-11-17T07:23:05ZMy english keyboard has lots of characters that are not ASCII ¬ ` ¦
And - being a proper english keyboard - it also has £ which is not ASCII.http://stackoverflow.com/questions/1746715/is-there-a-name-set-for-characters-that-can-be-typed-using-a-standard-english-kComment by on Is there a name / set for characters that can be typed using a standard english keyboard?2009-11-17T07:21:30Z2009-11-17T07:21:30ZI wasn't aware that there was a "standard english keyboard" - for example different keyboards are used in the US and Britain.http://stackoverflow.com/questions/1738671/pass-enums-by-value-or-referenceComment by on Pass enums by value or reference?2009-11-15T20:49:47Z2009-11-15T20:49:47Zenums 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-numbersComment by on Math Overflow -- Handling Large Numbers2009-11-14T17:41:44Z2009-11-14T17:41:44ZAs 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-ideComment by on Something wrong with my gdb or KDevelop IDE?2009-11-14T15:07:05Z2009-11-14T15:07:05ZHave 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 "chmod ug+rw" tty* and pty* devices and/or add the user to the tty group using "usermod -G tty username".http://stackoverflow.com/questions/1726302/removing-spaces-from-a-string-in-c/1726315#1726315Comment by on Removing Spaces from a String in C?2009-11-13T00:11:38Z2009-11-13T00:11:38ZThat 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#1725335Comment by on Can i execute any c made prog without any os platform???2009-11-12T21:33:29Z2009-11-12T21:33:29ZI'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.