Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~710 People Reached
Favorite Forums
Favorite Tags
c x 11
Member Avatar for kimimaro

Below are a program that supposed to ask a user to enter a user ID and if found, it will then modify the very same person details in the record and if not found then calls the add function to prompt the user details and add into the record.txt as …

Member Avatar for Adak
0
250
Member Avatar for kimimaro
Member Avatar for Narue
0
75
Member Avatar for kimimaro

Yo guys, I am doing a function to display selections of department for the user to input and if the department is chosen, it will then match the department with the department in the database allowing only employees within that department to be displayed, but the employees can be as …

Member Avatar for frrossk
0
158
Member Avatar for kimimaro

How do you limits employee display where you enter the department for all the employee within that department be displayed and if lets say they are 100 or so and you have to limits 10 employee per page before entering anything to display the next 10 again?

0
72
Member Avatar for kimimaro

hi below is my save function that is used to placed data from the C program to a text file for future usage. [code] [COLOR=Blue]void save() { FILE *save; int i = 0; save=fopen("employeerecord.txt", "a+"); do { if(strcmp(record[i].ID, "")!=0) { if(i!=0) fprintf(save, "\n"); fprintf(save, "%s %s %s %s %s ", …

Member Avatar for Narue
0
92
Member Avatar for kimimaro

hi I wonder if array can be work along with structure? Below are the declaration of my structure struct employee{ char ID[15]; char Name[20]; char Department[5][30]; int selection; char Post[3][30]; }; struct employee record[200]; I was wondering could if there is anywhere you can : struct employee{ char ID[15]; char …

0
63