Keeping a program running

I was wondering if there is anyway to keep a console program running even after you close it. Basically I want to make a phonebook and I dont want the phonebook to be deleted once I close the console (say, after I add a new contact or whatever...). Is this possible or would you recommend some other way?
All you need to do is store the phonebook data in a file. Perhaps you could read the file in when the program starts and write the file out when the program ends?
Last edited on
Yeah, I will go that route then and input the contacts in the console and add a search function etc.
Topic archived. No new replies allowed.