I've violated my cardinal rule by posting this, never make your first post a question, but since i have close to no expierince with any C langauge this is the way it's gonna have to be.

Ok, here is my question, I've written a couple of really simple math programs (really really really simple) and there pretty useless beacause whenever the program get's to the end and hits the "system ("pause");" line I hit a key and the program quits, not very usefull for doing several of the same problem type over and over again. So I try to add any kind of loop do while loops just plain while loops, and even if (1==1) loops, but whenever I try to compile this code (using Dev C++ Ver. 4.9.8.0) the compiler gets the first line that has to do with a loop and says "parse" down in the compiler "box of errors" (as i like to call it) like It's an error. what does this mean? is it like a syntax error? here is what my code looks like:
Code:
 do{
 Everything in here works whithout the do or while statement
} while (1==1)
I know this is a stupid question but it's beenbugging me for a couple of days now, I read the help file, the FAQ, this sites FAQ, more than one other sites FAQ, searched through post's and couldn't find any help. Thank you.