- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 2
- Posts with Downvotes
- 2
- Downvoting Members
- 1
5 Posted Topics
The project that I'm currently working on is for an large embedded application with a multi-person team. During a recent review of the code I came across the following statement [CODE]bSlcIsolated[logical-1] = (!!p_bIsolated);[/CODE] The interesting part is the double inversion [CODE]!!p_bIsolated[/CODE] The register being double inverted, is a private byte …
In the third example you are checking for the largest number in the array not the smallest; Try preloading your check value num with the contents of the first array element. [code] int num = tab[0]; for ( pos = 0, pos < size, pos++) { if ( num > …
The web is a wonderful tool, it provides us daniweb, wiki, and other resources try using them to answer basic questions for instance the search string "main memory auxiliary memory" entered into Google gives a plethora of information [url]http://wiki.answers.com/Q/Distinguish_between_primary_memory_and_auxiliary_memory[/url] [url]http://www.britannica.com/EBchecked/topic/130610/computer-memory[/url] [url]http://www.pcmag.com/encyclopedia_term/0,2542,t=auxiliary+memory&i=38285,00.asp[/url] [url]http://e-words.us/w/Auxiliary20Memory.html[/url] Any of these sites can explain the difference …
Atmel is a good starting point, they developed the AVR Butterfly (basically a simple development tool for about $20 dollars). There are two good C/C++ compilers one from IAR at about $500, but also a free open source GNU compiler. both compilers are well supported by a users forum, supported …
Hi everyone, Please bear with me this is my first post here at daniweb. I usually develop in C or assembly for embedded systems, but occasionally I have need to develop a PC application using C/C++ and have relied on Visual Studio C++ 6.0. Unfortunately I recently purchased a laptop …
The End.
doddware