My advice, check out some of the open source address book programs.
So what have you tried? Post the code that is causing you the problems. Also post any error messages you receive from compiling your code. Jim
Well std::cout comes to mind for C++ and maybe printf() for C. If this doesn't help, post some code and a more detailed question. Jim
Start by determining what makes a HRIS system. What kind of data will you need to consider? How much data? Where are you getting the...
You are freeing the same variable twice. free(ppTBL_ROW_DATA[nIndex]->pOfc_Address); free(ppTBL_ROW_DATA[nIndex]->pOfc_Address);...
You could start by checking out the Books and Tutorial link http://www.go4expert.com/showthread.php?t=107
Could it be that sizeof(int) != sizeof(int *) in 64 bit?
Check out this section of your code: for(i=1;i<=a;i++) Both i and a are moving targets you probably need for(i = 1; a < 0; i++) Jim
The error messages undefined references usually mean that you have not included all of the required libraries. Jim
In the following snippet: string s[51], ans; cin>>s; string s[51]; //defines an array of 51 strings cin >> s; // use a single...
One of the problems is that in your structures departure and arrival are defined as char departure[3], and the string you are reading from the...
Its hard to tell without having the file that you are reading. What error messages are you getting if any?
Ok then you have two typos in your code because you are defining and calling search_distination_duplicate not search_destination_duplicate. Jim
In the code you supplied, I do not see where you implement the search_distination_duplicate function. Jim.
What error messages are you getting? Also check for matching {}. Jim
The problem is the line name = nam; Check out strcpy() with cstrings.
Could you please provide a complete program that reproduces the error. The program you supplied is missing an include file and also the Hash...
So does the program compile without any errors? If not what are the error messages??
Im done.. if u want to translate it at english u can try it ;) it's on my Language - MACEDONIAN see ya So does the program compile without any...
When I try to compile your code I get several errors and warnings. I suggest you set your compiler to show all warnings. In gcc that would be with...
Separate names with a comma.