The function signatures do not match. In your class definition you have two integer parameters and your function has one parameter that is an...
You don't have a member function named sort() in your class definition. Jim
What have you tried? Please post your code. Jim
The following code: return a+sum(++a,b); Is your problem. The ++a in this position is undefined. int temp = sum(++a,b) return a+temp; See this...
So you: Do you know why it works? Since the program you "found" is using advanced language features, don't you think your instructor will...
First you can't have structures with the same name. To search a linked list you must iterate through the list and compare the node's value with...
Does your program compile without errors/warnings? If not please post the complete error/warning messages. If it does compile, what is your...
Have you tried to put this into a program and then compile and run the program? Did the program compile? What did the program output? Jim
Are gpsFrame,sResult,flength global variables? If so how are gpsFrame and sResult defined? What is the array size? What is the value fo flength...
As I said in my last post the program runs correctly for me. Jim
The program works fine for me. Are you sure that you are really opening the file? You test to see if the file opens and if not return -1 to the...
Re: help me guys Show some code where you tried to use the operators. Also please do not use SMS speak, use proper English. Jim
You should not try to use eof to terminate the while loop, because the eof flag is not set until after you have read past the end of the file....
Probably means remove the semicolon before the colon. Jim
This link should help to explain the results. Sequence_point. Jim
Which system function will depend on the operating system you are using. Jim
First: Please use code tags!!! Second: What is wrong with the program? What exactly is wrong with it? Does it compile without...
You can do this a couple of ways, one way would be to read in the variables into "temporary" variables, then pass these variables to your class...
Is the above code the current code? Have you made any changes? What questions are unanswered? Jim
So was your question answered here "Trouble with friend" or do you still need help? Jim
Separate names with a comma.