Search the web
Sign In
New User? Sign Up
c-prog · C/C++ Programmer's Mailing List
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 69534 - 69563 of 71513   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
69534
... 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....
Michael Sullivan
msulli1355
Offline Send Email
Mar 1, 2009
12:08 pm
69535
... 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...
John Matthews
johnmatthews...
Offline Send Email
Mar 1, 2009
2:55 pm
69536
... 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....
John Matthews
johnmatthews...
Offline Send Email
Mar 1, 2009
2:59 pm
69537
... 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 --...
Brett McCoy
smartandkewl
Offline Send Email
Mar 1, 2009
3:06 pm
69538
... 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...
John Matthews
johnmatthews...
Offline Send Email
Mar 1, 2009
3:35 pm
69539
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,...
Tyler Littlefield
tyler@...
Send Email
Mar 1, 2009
3:42 pm
69540
... 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...
John Matthews
johnmatthews...
Offline Send Email
Mar 1, 2009
3:57 pm
69541
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...
ruhatadiyaman
Offline Send Email
Mar 1, 2009
4:00 pm
69542
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. &...
Paul Herring
shabble
Offline Send Email
Mar 1, 2009
4:06 pm
69543
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...
cupofjava1961@...
odbapsvm
Online Now Send Email
Mar 1, 2009
4:21 pm
69544
... message i looked the book carefully. and i saw that there is enough explanation about this. best regards...
ruhatadiyaman
Offline Send Email
Mar 1, 2009
4:22 pm
69545
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...
mrkcoconnell
Offline Send Email
Mar 1, 2009
5:19 pm
69546
... Unfortunately our code is C, not C++....
John Matthews
johnmatthews...
Offline Send Email
Mar 1, 2009
9:25 pm
69547
thanks a lot... it is not Deitel's mistake, it is my mistake :(( best regards...
ruhatadiyaman
Offline Send Email
Mar 2, 2009
8:36 am
69548
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...
naveenstc
Offline Send Email
Mar 2, 2009
9:58 am
69549
... 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,...
Brett McCoy
smartandkewl
Offline Send Email
Mar 2, 2009
12:54 pm
69550
... 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...
Thomas Hruska
shininglightpro
Offline Send Email
Mar 2, 2009
2:01 pm
69551
... 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,...
Brett McCoy
smartandkewl
Offline Send Email
Mar 2, 2009
2:06 pm
69552
I keep getting these access violations, and the line the program seems to stop on is string Character::getIMFileName() { return imageMapFileName; } Her'e the...
Michael Sullivan
msulli1355
Offline Send Email
Mar 2, 2009
5:35 pm
69553
... 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 ...
Michael Sullivan
msulli1355
Offline Send Email
Mar 2, 2009
5:55 pm
69554
... 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 ...
Ranju V
avranju@...
Send Email
Mar 2, 2009
11:01 pm
69555
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...
Michael Sullivan
msulli1355
Offline Send Email
Mar 2, 2009
11:03 pm
69556
... #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; } } ...
Paul Herring
shabble
Offline Send Email
Mar 2, 2009
11:37 pm
69557
... 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;...
Brett McCoy
smartandkewl
Offline Send Email
Mar 2, 2009
11:43 pm
69558
Pretty much, except I added the closing brace for the for loop... ... [Non-text portions of this message have been removed]...
Michael Sullivan
msulli1355
Offline Send Email
Mar 3, 2009
1:34 am
69559
#include<iostream.h> #include<time.h> #include<stdlib.h> #include<conio.h> int main(void) { int score,leftchances, number,guessnumber; leftchances= 6; score=0;...
aftab_4u_007
Offline Send Email
Mar 3, 2009
5:14 am
69560
#include<iostream.h> #include<time.h> #include<stdlib.h> #include<conio.h> int main(void) { int score,leftchances, number,guessnumber; leftchances= 6; score=0;...
aftab_4u_007
Offline Send Email
Mar 3, 2009
11:28 am
69561
#include<iostream.h> #include<time.h> #include<stdlib.h> #include<conio.h> int main(void) { int score,leftchances, number,guessnumber; leftchances= 6; score=0;...
aftab sheikh
aftab_4u_007
Offline Send Email
Mar 3, 2009
11:28 am
69562
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...
naveenstc
Offline Send Email
Mar 3, 2009
10:22 pm
69563
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...
mina
mina_sa2020
Offline Send Email
Mar 4, 2009
12:36 pm
Messages 69534 - 69563 of 71513   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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