Tricky to leave hints without answering the questions for you. These are not difficult questions and you have all the information you need. 1. I...
You cannot insert data into files because file I/O does not support that. So you have to rewrite the file. Read it in line by line, write each...
Which version of OraOLEDB are you using? (Use the Oracle Installer - click Installed Products, and don't forget to check for any patchsets...
I'd use a for loop within a for loop. The outer for would count from 1 to the number entered (so 1-4 if the user enters 4). The inner for would...
What do you want us to send you? Have you tried using Google? www.google.com It's a very useful resource, especially for programming info. Look...
You could keep a copy of the file and do a byte-by-byte check. Or you could calculate the MD5 of the file's content and store that. Either method...
My turn to ask for help... I've been working on this all day trying to find a solution. Tried loads of different things and still getting...
You were warned here http://www.go4expert.com/showthread.php?t=24348 about posting duplicate threads. DO NOT DO IT AGAIN. If the board admin...
Posting duplicate threads is a greate way to get banned. It doesn't help you. If we're not going to respond to a thread then we're not going to...
Don't post duplicate threads please. http://www.go4expert.com/showthread.php?t=24372
First are you able to do it on paper? If you can't do that you have no chance of being able to program it. Do you understand the requirements?...
Is your stack big enough to contain a 10MB array?
The semicolon after equal() completes the definition of a prototype, so the code afterwards is incorrect because there's no function header....
Add a public get and set function to x, which will be inherited by y: class x { private: int a; public: int get_a() { return a; } void...
Please use code tags when posting code. It preserves the formatting. Also please read the posting guidelines.
if it's less than 20 you have to display a specific word. if it's less than 100 then display one of "twenty, thirty, forty etc" and one of...
You can do it two ways: (1) you can write functions to convert between LSD and a number of D (for example 13.3.9 would be 13*240+3*12+9=3165),...
OK, so if you're on a course, why do you have no idea how to start? Have you not been paying attention? Did the course specify some...
You need to let your tutors know this is causing you difficulty. Perhaps it is not necessarily a test you must pass but an exercise to determine...
This sounds like a fairly straightforward task. How far have you got with it and where are you stuck? Do you understand the requirements? Do...
Separate names with a comma.