It would help to know what compiler you are using. Ray ... _________________________________________________________________ Mother’s Day is May 9. Make it...
What type of file are you going to output? When you output a file, how the text is displayed depends on how the program that reads and displays the file...
In a message dated 4/30/2004 8:59:07 PM US Eastern Standard Time, ... Yes. If you use an IDE, it runs the program and returns immediately afterward to the...
Show us what you have so far, and then we can help. We will not do your homework for you. Check out the follwoing web page for some notes on polymorphism. ...
well, it doesnt for me... dev-cpp just wont work right on my comp, the Vroach doesnt even work right on it, maybe the site i got it off of screwed something...
ok, I am litterally bran-new to c++ and heres what i have as my first program (to get use to how it works) /* Name: first program Author: Microdyminsion ¬ ...
if the output is for the screen, the easiest way to outputing text with color in linux is using ANSI escape sequence... example code : #include <stdio.h> int...
Wijaya K
wikes@...
May 1, 2004 5:53 pm
36666
On Sat, 01 May 2004 15:27:55 -0000 ... That is a very, very untrue statement. I have several unix computers here, each with very good working versions of cc....
is there a way to write out a file in html/dhtml/javascript and compile it into an executable that runs as if it were programmed into internet explorer?...
Enter your vote today! A new poll has been created for the c-prog group: not c++ but there is more than 1 programming language, which has the most...
c-prog@yahoogroups.com
May 1, 2004 9:39 pm
36670
Hello Friends, can i get control over Explorer.exe through VC++.If i want to lock a folder thru it what should i do.I want that software GUI.help me out...
i know a way to make your folder truely hidden... put it in a zip folder, add a password than change .zip to .cab as far as you computer can tell the .cab will...
if u r using turbo c++ 3.0 u can use function findfirst(), and findnext() to access the files in any directory........using these u can also get the ...
I've created an abstract base class, and I'd like to create an array of that base class, with each element containing an instance of a derived class. Such as:...
... Remove that #include statement and try this one instead: #include <iostream> You also need to get access to the standard namespace: using namespace std; ...
... you changed the call you need to add the ugly & ... Victor A. Wagner Jr. http://rudbek.com The five most dangerous words in the English language: ...
"doesn't work" is a LOUSY bug report. The only useful information we have is you have NO idea what you're doing ... I consider it far more likely that a...
ok whenever i use cout << "<message>""; i get errors if i use cout:"<message>"; its fine but if i put more than 1 cout:"<message">; it says duplicate lable or...
the program has several problems...... ... you don't need the above line, BUT.... #include <iostream> you do need that line you will also need: using namespace...
... guess what compiler dev-cpp uses... yes, g++ ... Victor A. Wagner Jr. http://rudbek.com The five most dangerous words in the English language: "There...
silly poll, by no stretch of imagination can html, or xml be considered a programming language. ... Victor A. Wagner Jr. http://rudbek.com The five most...
ok as far as I understand.. return 0; closes the program right? so return false; should keep the window open right? as soon as i open the following program...
ok, I solved my previous error -- it was a syntax error. I wasn't declaring the virtual function in the abstract base class to be a pure virtual function. I...