352 Posted Topics
Re: Of course can break,there are many condition...you are the programmer and you have to decide the condition... See my example...:) [code=pascal] Program RepeatUntilBreaking; Uses Crt; Var c:Char;{from ascii} Begin {main} ClrScr; c:=#0;{initially} {#27=Esc button from keyboard} Repeat c:=ReadKey; {while you do not press the esc button the loop is continue} … | |
Re: I have an idea.There was a program called 'W32DASM' created by URSoftware...but if you want to use this software then first you have to learn the Assembly language. Try the Google! |
The End.