Not enough info. What OS? Are the timers implemented by the OS or have ou implemented them? A handle is just something the computer uses to be...
Yes, but it will need a number of corrections as well as additional code. The "sturct" typo is still there so it looks like you've done nothing...
Where exactly are you confused? I've goven you some pretty detailed instruction as to how best to proceed but you appear to be ignoring it.
You seem to be using this forum as a substitute for doing your own thinking. Analyse the following answer: No, you don't need a function called...
Please don't post duplicate threads http://www.go4expert.com/showthread.php?t=25674 If you want to provide more information, add a "reply" to...
Use multiple tests, so if you want to check if an input number is odd and between 32 and 45: if ((inputNum%1) && (inputNum>=32) &&...
http://lmgtfy.com/?q=auto+pointer
What output do you get if you run the program? What output do you expect to get?
Well, does it work? You don't need me to look over the code before you can determine that. Compile it, if that works, run it and see what output...
OK so now you'll need some mechanism for looping. There are three basic types of loop in C: for, while and do. Look them up in your textbook, or...
Well, you don't need to ask that sort of question. Have a guess where to put it in, then run the program, and if it doesn't behave as you want,...
Use an if statement to check the answer. if (iNumber==8) cout << "Correct"; else cout << "Wrong";
iWord is an int, not a string. cin tries to read until it gets a number, and since there isn't one that confuses it. So change int iWord to...
Best way is to go on a training course - learn directly from an expert, face to face. The internet doesn't make a good teacher.
Sure thing. My consultancy rates are UKP150/hour, minimum one 8-hour day, payable in advance.
What are the supposedly wrong messages? why won't you answer my questions directly? I'm the expert and you're the beginner, remember, so maybe I...
while takes a boolean, so when *src++=*des++ evaluates to zero, the loop will terminate. The value of an expression is the assigned value, so for...
What are the first five compiler errors? Have you tried taking the "plain English" meaning of those errors? For example, if the error is "missing...
Try reformatting the code (I use Notepad++ and TextFX). If you do, you'll see you're trying to write embedded functions: closest_point() seems to...
Probably you're trying to do too much. Split it down into simple tasks, have a go and see how far you get. Try what I said. Google for an...
Separate names with a comma.