??? 03/10/05 18:37 Read: times |
#89412 - Do NOT jump! Responding to: ???'s previous message |
Rahul Sadagopan said:
Hi Andy,
Here all Characters(alphabets, numbers, spl characters) are printed continously, when the end of the line is reached the next character is printed on the next line. So just do it like I said before: http://www.8052.com/forum/read.phtml?id=88949 characters_printed := 0; repeat{ print the next character; increment characters_printed; if characters_printed >= max characters per line { print newline; characters_printed := 0 } }forever |