Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

c-prog · C/C++ Programmer's Mailing List

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 13581
  • Category: C and C++
  • Founded: Sep 7, 1998
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

Advanced
Messages Help
Messages 69534 - 69563 of 75373   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
69534 Michael Sullivan
msulli1355 Send Email
Mar 1, 2009
12:08 pm
... The array index was the problem. I had numbered them 1-4. That's a beginner's mistake. It does what I wanted it to now....
69535 John Matthews
johnmatthews... Send Email
Mar 1, 2009
2:55 pm
... 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...
69536 John Matthews
johnmatthews... Send Email
Mar 1, 2009
2:59 pm
... 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....
69537 Brett McCoy
smartandkewl Send Email
Mar 1, 2009
3:06 pm
... 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 --...
69538 John Matthews
johnmatthews... Send Email
Mar 1, 2009
3:35 pm
... 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@... Send Email
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,...
69540 John Matthews
johnmatthews... Send Email
Mar 1, 2009
3:57 pm
... 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...
69541 ruhatadiyaman Send Email Mar 1, 2009
4:00 pm
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...
69542 Paul Herring
shabble Send Email
Mar 1, 2009
4:06 pm
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. &...
69543 cupofjava1961@...
odbapsvm Send Email
Mar 1, 2009
4:21 pm
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...
69544 ruhatadiyaman Send Email Mar 1, 2009
4:22 pm
... message i looked the book carefully. and i saw that there is enough explanation about this. best regards...
69545 mrkcoconnell Send Email Mar 1, 2009
5:19 pm
Hi, I compiled the structure below an compiled with g++ and received an immediate error (not a warning). hello.c:11: error: declaration of `char...
69546 John Matthews
johnmatthews... Send Email
Mar 1, 2009
9:25 pm
... Unfortunately our code is C, not C++....
69547 ruhatadiyaman Send Email Mar 2, 2009
8:36 am
thanks a lot... it is not Deitel's mistake, it is my mistake :(( best regards...
69548 naveenstc Send Email Mar 2, 2009
9:58 am
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...
69549 Brett McCoy
smartandkewl Send Email
Mar 2, 2009
12:54 pm
... 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,...
69550 Thomas Hruska
shininglightpro Send Email
Mar 2, 2009
2:01 pm
... 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...
69551 Brett McCoy
smartandkewl Send Email
Mar 2, 2009
2:06 pm
... 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,...
69552 Michael Sullivan
msulli1355 Send Email
Mar 2, 2009
5:35 pm
I keep getting these access violations, and the line the program seems to stop on is string Character::getIMFileName() { return imageMapFileName; } Her'e the...
69553 Michael Sullivan
msulli1355 Send Email
Mar 2, 2009
5:55 pm
... 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@... Send Email
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 ...
69555 Michael Sullivan
msulli1355 Send Email
Mar 2, 2009
11:03 pm
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...
69556 Paul Herring
shabble Send Email
Mar 2, 2009
11:37 pm
... #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; } } ...
69557 Brett McCoy
smartandkewl Send Email
Mar 2, 2009
11:43 pm
... 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;...
69558 Michael Sullivan
msulli1355 Send Email
Mar 3, 2009
1:34 am
Pretty much, except I added the closing brace for the for loop... ... [Non-text portions of this message have been removed]...
69559 aftab_4u_007 Send Email Mar 3, 2009
5:14 am
#include<iostream.h> #include<time.h> #include<stdlib.h> #include<conio.h> int main(void) { int score,leftchances, number,guessnumber; leftchances= 6; score=0;...
69560 aftab_4u_007 Send Email Mar 3, 2009
11:28 am
#include<iostream.h> #include<time.h> #include<stdlib.h> #include<conio.h> int main(void) { int score,leftchances, number,guessnumber; leftchances= 6; score=0;...
69561 aftab sheikh
aftab_4u_007 Send Email
Mar 3, 2009
11:28 am
#include<iostream.h> #include<time.h> #include<stdlib.h> #include<conio.h> int main(void) { int score,leftchances, number,guessnumber; leftchances= 6; score=0;...
69562 naveenstc Send Email Mar 3, 2009
10:22 pm
Thanks alot Guys.... i'll try my best and give tell u'll da way how i did it .. if i do it .. thanks again guys...
69563 mina
mina_sa2020 Send Email
Mar 4, 2009
12:36 pm
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...
Messages 69534 - 69563 of 75373   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help