... I don't know how much programming you do, but if you can afford it (or can persuade your employer to buy it for you) Gimpel's PC-Lint is great at spotting...
... Wow- I've seen how much it costs now. Last time I looked it was about £100, now it's £346! Definitely something you ask your employer to get for you....
... There are free (open source) versions of Lint for Windows also, like splint: http://www.splint.org/ Although it seems to only be supported up to Win2K --...
... splint: I did play with splint for a while, and although of course it's better than nothing, I would say that PC-Lint is worth the money. Especially if you...
69539
Tyler Littlefield
tyler@...
Mar 1, 2009 3:42 pm
so here's the question. Whose buying it for me? <wink> Thanks, Tyler Littlefield Web: tysdomain.com email: tyler@... My programs don't have bugs,...
... Last week a bug was discovered in the code I work on (not in my area). Some of our message types use anonymous unions, which have the interesting property...
as i said i started C from Deitel and i wrote some examples from book. there was a example about function scanf. i write it as scanf("%d", var); and then...
On Sun, Mar 1, 2009 at 3:59 PM, ruhatadiyaman ... scanf() requires the address of the variable in which to place the number, not the value of that variable. &...
Deitel books are infamous for cramming lots and lots of info in their books. A typo here and there is certainly not out of the question. Most information...
Brett, Actually i tried using systems functions.. but it didn't work for me bcoz i am not that good in handling systems functions. And i tried importing the C...
... You should do a Google search on embedding a flash player into C or C++. -- Brett ... "In the rhythm of music a secret is hidden; If I were to divulge it,...
... Gut instinct would be to use IWebBrowser2 and then use normal Flash embedding that way (let the browser handle the interaction). Since Flash is also...
... I think similar things can be accomplished using the Mozilla libraries. -- Brett ... "In the rhythm of music a secret is hidden; If I were to divulge it,...
I keep getting these access violations, and the line the program seems to stop on is string Character::getIMFileName() { return imageMapFileName; } Her'e the...
... I think I've got it, but I need to ask a question first: Ally inherits from Character. In Java, this would mean that Ally would have all the public ...
69554
Ranju V
avranju@...
Mar 2, 2009 11:01 pm
... Are you debugging a "release" build? If yes, then it is possible that the compiler might have inlined the function call away in the interest of code ...
The following code: for (int i = 0; i < 12; i++) { x = 0; y = 0; if (i >= 4 && i < 8) { x = 100; } if (i >= 8 ) { x = 200; } } if I step through it with F10 it...
... #include <iostream> int main(void){ int x, y; for (int i = 0; i < 12; i++){ x = 0; y = 0; if (i >= 4 && i < 8){ x = 100; } if (i >= 8 ){ x = 200; } } ...
... If you're trying to generate (x,y) coordinates for screen locations, you'll want to go with something like: for(i = 0; i < 4; i++) { y = i* 100; for(j = 0;...
I have some problem about vector!what is concat of two vector?how is implementation of this in C++? and how is implementation of overloading operator + for...