Forum: C Nov 8th, 2004 |
| Replies: 1 Views: 1,569 How many ways are there to exit your prgoram using a pure C language? |
Forum: C Nov 6th, 2004 |
| Replies: 8 Views: 2,244 im using borland 5.02 cant use the system(cls) it cant even compile that's funny... Hmmm... |
Forum: C Nov 5th, 2004 |
| Replies: 8 Views: 2,244 Oh i see thanks for the info but may i know how it works? Thanks |
Forum: C Nov 5th, 2004 |
| Replies: 8 Views: 2,244 sorry this is a college project so we cant use anymore than just C . I still cant display 10 per 10 properly |
Forum: C Nov 5th, 2004 |
| Replies: 8 Views: 2,244 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... |
Forum: C Nov 3rd, 2004 |
| Replies: 0 Views: 1,275 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... |
Forum: C Oct 30th, 2004 |
| Replies: 1 Views: 1,930 hi below is my save function that is used to placed data from the C program to a text file for future usage.
void save()
{
FILE *save;
int i = 0;
save=fopen("employeerecord.txt",... |
Forum: C Oct 27th, 2004 |
| Replies: 0 Views: 2,936 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]; |
Forum: C Oct 26th, 2004 |
| Replies: 11 Views: 3,699 Thanks for your help now there is still a problem in the add_record function where it always stored the department as Accounting eventhough if you entered as Administration or other or Management. I... |
Forum: C Oct 26th, 2004 |
| Replies: 11 Views: 3,699 The error was that if supposed to create a Record.txt and place the employee details there and i found out that if a record.txt is there it will stuck in the menu where you it prompt you to insert a... |
Forum: C Oct 25th, 2004 |
| Replies: 11 Views: 3,699 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... |