Trying to figure out this for loop

I have been trying to write a program for an assignment to write bar codes. I have found some similar programs to help give me some ideas but, I can't understand this for loop. Specifically the condition is what I'm trying to understand. In researching I found that the /b moves the cursor back one space but I don't know if this applies in this scenario of if it's read as </b> and the condition for i is less than 32. Any help is greatly appreciated.

 
  for(int i=0;<</b>32;i++)
not sure what you are trying to do with <</b>32 it probably should be i < 32 Anyways, for backspace it would be a character literal '\b' not /b (notice backslash and not forward slash).
Topic archived. No new replies allowed.