Forum: C++ Sep 22nd, 2004 |
| Replies: 5 Views: 6,606 Hello,
To best understand the material, you need to USE the material. Write some small programs, such as writing sentances on the screen. Then, do some simple math, adding 2 + 2 together. ... |
Forum: C++ Sep 20th, 2004 |
| Replies: 4 Views: 1,804 Hello,
It is DaniWeb policy to assist you in writing your code, not to do it for you. You mentioned that you are learning C++. What have you learned so far?
We need you to provide code,... |
Forum: C++ Sep 7th, 2004 |
| Replies: 11 Views: 9,111 Hello,
If he wants a password to get into his program, he could control it with the OS, or he could wriite/use an encryption module to prompt the user for a password, and then write the... |
Forum: C++ Jun 17th, 2004 |
| Replies: 8 Views: 4,381 Hello,
There are some ways to do this.
For CPU monitoring (and network), you can look into a package called mrtg that can be setup to monitor CPU processes, and graph it out. It will... |
Forum: C++ Jun 16th, 2004 |
| Replies: 6 Views: 2,261 Hello,
I would strongly suggest that you look into C++ to handle this project. Traditional C has a number of more difficult processes that C++ has made easier.
I would also look into... |
Forum: C++ May 3rd, 2004 |
| Replies: 5 Views: 8,840 Hello,
I am not an expert programmer, but it looks to me that you should define the struct before you do the typdef statement. It might be possible to combine them as shown-- I am not sure.
... |
Forum: C++ Apr 26th, 2004 |
| Replies: 4 Views: 6,195 Hello,
As it is *your* homework, we should not be doing it for you. But, we can give you some ideas.
1) Each one of your steps (add, delete) should be a unique different function
2) You will... |
Forum: C++ Apr 26th, 2004 |
| Replies: 6 Views: 29,307 Hello Peter,
Couple things that I see that need help on....
1. When you declare the variable (numsales), it is a good idea to initialize it manually before starting to use it. Some... |