Just one thing before I say anything else. I've noticed you declared main as int (integer). There really isn't a need to do this unless it's going to be returning a value at some point. In other words you may just want to declare it like so.
CODE
void main() //NOTICE: The void declaration means this function doesn't return anything.
{
}
Theres many, many ways you can make this program continue on but many of them require a bit more knowledge of the language to utilize. In order to make a program run indefinately, a specific number of times or until a condition is met you have to use... I encourage you to look these up and play around with them a bit. If you don't understand it right away - no biggie. The compiler isn't going to bite you

. There's a brief description of some types of loops.
LoopsKeep in mind the implementation of many loops requires a solid understanding of Basic C concepts. Some of the loops you may have seen and will eventually encounter are:
Do-while loops. Basically these loops do something while a certain condition is met. These are relatively simple to understand and easy to implement.
For loopsThese loop a specific set of instructions a variable number of times depending on the situation. Simpler said. They loop as many times as you tell them too!
while loopsVery similar to do-while loops except they usually run a set of instructions while a specific argument is NOT true.
RecursionRecursion is not a loop in the sense of the others but does, effectively create a loop when implemented. Basically it entails calling the function from within itself and thereby restarting the function from beginning.
Below I've given you a simple piece of code that utilizes recursion.
CODE
void main()
{
// CODE HERE
main(); // NOTICE: This calls the function from within itself. Thus, A loop
}
You must be careful when doing this becuase this will loop the program forever. That's right - FOREVER. Unless you put something into the program to tell it to stop. Which is relatively simple but may still need to be learned. Try it out and see how it works. Later on you'll learn how to manipulate loops to work for you.