Forum: C++ Jun 22nd, 2008 |
| Replies: 8 Views: 841 Well dear Superfat, the most effective solution for you problem has already been given by vijayan121. Unfortunately you aren't able to understand his fine function. So GOD's advice should be... |
Forum: C++ Jun 16th, 2008 |
| Replies: 12 Views: 2,652 Hi niek_e
You are right, I have overlooked the semicolon at he far right.
Intuitively I also would put a semicolon at left side if for-init statement is off. But the ISO standard tells the... |
Forum: C++ Jun 13th, 2008 |
| Replies: 3 Views: 3,551 |
Forum: C++ May 22nd, 2008 |
| Replies: 15 Views: 1,480 Possibly, you don't know what you should change in your function to get it function correctly. These are your problems in binaryAdd of posting #7:
1. Serious problem (where you begin when you are... |
Forum: C++ Apr 17th, 2008 |
| Replies: 11 Views: 1,520 ofstream is for output, which can be combined with fstream::out | fstream::app // for append
but not with fstream::in | fstream::out
if you want to do both, use fstream.
you may have a look at ... |