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...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

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 41879 - 41908 of 71513   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
41879
can sombody tell me how to do dynamic hash [hash trie] plz if you can tell me how i can control it plz help help...
bena
bena1_2001
Offline Send Email
Jan 1, 2005
8:18 am
41880
In a message dated 12/30/2004 11:18:02 AM US Eastern Standard Time, ... Maybe. I'm pretty sure I said I wasn't sure. Do you have another answer?...
abram10@...
abrammagner
Offline Send Email
Jan 1, 2005
5:50 pm
41881
... yeah, use C++ unless you're forced to use C ... Victor A. Wagner Jr. http://rudbek.com The five most dangerous words in the English language: "There...
Victor A. Wagner Jr.
vawjr1943
Offline Send Email
Jan 1, 2005
6:30 pm
41882
hello I wanna know that how in C++ u can make mouse motion visible on screen and also how to find its velocity and quadrant and position Is there something...
iwannaknowna
Offline Send Email
Jan 2, 2005
12:41 am
41883
hello I am trying to use C++ as coding lang in hardware related projects can any one give me hints about that. anyone related to hardware?? plz do reply...
iwannaknowna
Offline Send Email
Jan 2, 2005
12:41 am
41884
Dear All, MAY THE NEW YEAR GIVE U Independence of Java Power of Unix Popularity of Windows Extensibility of J2EE Luxury of .Net Efficiency of C Ease of VB ...
nivedita banerjee
niv_cdac
Offline Send Email
Jan 2, 2005
12:41 am
41885
... Not sure what you're looking for. When we do hardware projects we almost always implement a class for each hardware object (this means portions of chips...
Victor A. Wagner Jr.
vawjr1943
Offline Send Email
Jan 2, 2005
3:37 am
41886
... C++ "knows" nothing about interrupts, sorry. ... Victor A. Wagner Jr. http://rudbek.com The five most dangerous words in the English language: "There...
Victor A. Wagner Jr.
vawjr1943
Offline Send Email
Jan 2, 2005
5:30 am
41887
Hi to all. sincere apologize for the people who hurt by my statemnets. one guy said that depending upon the availability of compilers u can use either C or...
Sakthivel Dhanabalakr...
cgroup_sakthi
Offline Send Email
Jan 2, 2005
6:53 am
41888
See http://www.libsdl.org and http://sdldoc.csn.ul.ie/sdlevent.php Or http://www.allegro.cc/manual/view_category.php?_id=4 Or you may search for your plataform...
izecksohn@...
izecksohn
Offline Send Email
Jan 2, 2005
7:05 am
41889
I wrote: #include <cstdlib> #include <iostream> class PColor { public: unsigned char r, g, b; void rand () { int color = (std::rand()&0xffffff); r =...
Pedro Izecksohn
izecksohn
Offline Send Email
Jan 2, 2005
7:53 am
41890
On Sat, 1 Jan 2005 10:39:05 +0000 (GMT) ... Windows is not popular here ... Mono is the way Happy new year...
ed
psy80uk
Offline Send Email
Jan 2, 2005
1:01 pm
41891
... void print (ostream& o) ... by reference as shown above although your compiler has a "feature" that lets you ignore putting the proper using...
Victor A. Wagner Jr.
vawjr1943
Offline Send Email
Jan 2, 2005
4:38 pm
41892
Thank you Victor....
Pedro Izecksohn
izecksohn
Offline Send Email
Jan 3, 2005
1:30 am
41893
Hi, I encounter a problem to add my Obj into a List. Is there anyone can teach me? Regards, Fred...
Frederick
camelfredcamel
Offline Send Email
Jan 3, 2005
6:56 am
41894
Hi Fred Scroll down. Thanks!! and have a nice day!! Jaspreet ... From: Frederick [mailto:camelfredcamel@...] Sent: Monday, January 03, 2005 12:27 PM To:...
Jaspreet Oberoi
jaspreet.oberoi@...
Send Email
Jan 3, 2005
7:03 am
41895
try typing the following to your code after the header files using std::ostream; I think this should solve your problem ... __________________________________ ...
MISHAL SANGHVI
mishal153
Offline Send Email
Jan 3, 2005
8:06 am
41896
Reply embedded... ... The standard function is srand(). ... Sure. But you can make some good use of this behavior: you can use the same sets of numbers to...
Shyan Lam
sflam108
Offline Send Email
Jan 3, 2005
5:37 pm
41897
Personally, I favor Victor's advice, just use the STL vector and string classes. But if you *must* roll your own, the following is an approximation of ...
Barry Gold
bgoldnyxnet
Offline Send Email
Jan 3, 2005
10:12 pm
41898
... A side note here: rand() returns a value in the range 0..RAND_MAX, and RAND_MAX need _not_ be more than 32767 (0x7FFF) in general. In other words,...
peternilsson42
Offline Send Email
Jan 3, 2005
11:30 pm
41899
From: Victor A. Wagner Jr. [mailto:vawjr@...] ... [...] ... Bad idea. <http://www.robertjacobs.fsnet.co.uk/main.htm> #7(a) -- PJH "Real programmers can...
Paul Herring
shabble
Offline Send Email
Jan 4, 2005
9:31 am
41900
hello all how to get characters without echoing on the standard output. In windows we have getch() to do this ,but it is not working in linux. I tried with all...
prasad514
Offline Send Email
Jan 4, 2005
11:08 am
41901
hello all iam doing the project pop3.At the time of authorization phase in the project i require both username and password checking. In my project the...
prasad514
Offline Send Email
Jan 4, 2005
11:08 am
41902
From: prasad514 [mailto:prasad514@...] ... You cannot do this portably. <http://www.eskimo.com/~scs/C-faq/q19.1.html> -- PJH "The difference between...
Paul Herring
shabble
Offline Send Email
Jan 4, 2005
11:15 am
41903
From: prasad514 [mailto:prasad514@...] ... You don't appear to give sufficient information - some code would be useful. Looking at...
Paul Herring
shabble
Offline Send Email
Jan 4, 2005
11:36 am
41904
If you are programming under UNIX, you can use terminal I/O features. Refer tcgetattr(3C), tcsetattr(3C), termios(7) for further details. Unset ECHO to...
chandan talukdar
hibablu
Offline Send Email
Jan 4, 2005
12:38 pm
41905
Hi all, I would like to know how to open big files (like over a gig) in a text editor. Doew anyone have any experience on that? It could be in any language. ...
marcelo.miorelli@...
jjradha
Offline Send Email
Jan 4, 2005
1:20 pm
41906
Hi Marcelo, there are two approaches: 1) Use a text editor that can open such huge files; Slick was able to do so (the MS-DOS version, however, could not open...
Nico Heinze
nico_heinze
Offline Send Email
Jan 4, 2005
1:31 pm
41907
hello all, i have a doubt in using int86() function, * it has 3 parameters * 1st used to rep the interrupt number * 2nd is a structure for input * 3rd ''...
kodi eeswar
kodi_eesh
Offline Send Email
Jan 4, 2005
1:31 pm
41908
Hi Friends , Can any one Explain the Following Program .Just give me the Detail Discription....Thanks For u Help... 1) main( ) { struct emp { char n[20] ; ...
M N Mohammed Yousuff
usuf_f
Online Now Send Email
Jan 4, 2005
1:33 pm
Messages 41879 - 41908 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