-
Struct Problem
I have to write a program using structs but am having real hard time with it. It is about a company database which lets a user enter a new client, edit existing client and display all current clients. I have tried to write this program in every possible way I can, but for some reason it doesn't work for something or the other. If anybody has a code for this program please email to me at coolestdesai@yahoo.com. Thank You!!!
-
FYI
i don't think thats going to get you too far 'round here.. trust me.. LOL
try posting methods you've tried and we'll help solve them with you however we're not going to solve them for you.
GL
-
Here is the code:
Code:
struct Client {
//...your code goes here...
};
void Add( struct Client client ) {
//...your code goes here...
}
void Delete( struct Client client ) {
//...your code goes here...
}
void Display( struct Client client ) {
//...your code goes here...
}
Post some code brother ;)