Forum: C++ Sep 22nd, 2004 |
| Replies: 5 Views: 6,532 look this web site,it is a good tutoria for study C++.
http://www.cplusplus.com/doc/tutorial/
or you can reading "Essential C++" . |
Forum: C++ Sep 17th, 2004 |
| Replies: 4 Views: 1,724 by the way,you must include <conio.h> in your source files. |
Forum: C++ Sep 17th, 2004 |
| Replies: 4 Views: 1,724 in Turbo C/C++, you can use the gotoxy(x, y) function to move the cur on the screen. |
Forum: C++ Sep 12th, 2004 |
| Replies: 8 Views: 3,079 THe C++ Standard suggest we ought to using cin to get char or strings. you can use vector to store the strings. vector is a object but like a array. |
Forum: C++ Sep 7th, 2004 |
| Replies: 5 Views: 2,603 |
Forum: C++ Sep 7th, 2004 |
| Replies: 5 Views: 2,603 the book "Effective C++" have a item introduce cosnt,but a question i dont understand clearly.
class GamePlayer {
private:
static const int NUM_TURNS = 5; // constant eclaration
int... |
Forum: C++ Sep 6th, 2004 |
| Replies: 14 Views: 5,400 int main()
{
double charge; // charge minnimum rate of 2 dollars for 3 hours
int hours;
//----------------------------
// Add a input statement
cin >> hours; |
Forum: C++ Sep 5th, 2004 |
| Replies: 11 Views: 8,967 I think you can use Access database to store the passwords and use ADO controler to operation the database. |
Forum: C++ Sep 5th, 2004 |
| Replies: 8 Views: 3,892 the first, you mustn't have any return statement in your main() function as if you use void main() declare. If you use int main() function, you must return a int value, otherwise your complier will... |
Forum: C++ Sep 5th, 2004 |
| Replies: 4 Views: 2,607 yes, a perfectly C program must have a main() function. |
Forum: C++ Sep 5th, 2004 |
| Replies: 6 Views: 3,912 Thank you very much, it is a good site for me to learn C++. |
Forum: C++ Sep 4th, 2004 |
| Replies: 3 Views: 1,887 past the soreces on here. |
Forum: C++ Sep 4th, 2004 |
| Replies: 3 Views: 2,051 I prefer the "Effective C++",It is a good book for improve your C++ programming. |