... 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...
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...
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...
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 ...
... 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...
... C++ "knows" nothing about interrupts, sorry. ... Victor A. Wagner Jr. http://rudbek.com The five most dangerous words in the English language: "There...
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...
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...
I wrote: #include <cstdlib> #include <iostream> class PColor { public: unsigned char r, g, b; void rand () { int color = (std::rand()&0xffffff); r =...
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@...
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 ... __________________________________ ...
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...
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 ...
... 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,...
From: Victor A. Wagner Jr. [mailto:vawjr@...] ... [...] ... Bad idea. <http://www.robertjacobs.fsnet.co.uk/main.htm> #7(a) -- PJH "Real programmers can...
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...
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...
From: prasad514 [mailto:prasad514@...] ... You cannot do this portably. <http://www.eskimo.com/~scs/C-faq/q19.1.html> -- PJH "The difference between...
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...
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. ...
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...
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 ''...
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] ; ...