Link to home
Start Free TrialLog in
Avatar of JWTtheTh
JWTtheTh

asked on

Beautifier

I have generated C++ source files. These source files are hard to read and therefore difficult to understand. Does anyone know a good program that can beautify the source code to make the code more readable.
ASKER CERTIFIED SOLUTION
Avatar of IainHere
IainHere

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of IainHere
IainHere

Alternatively, write neater code :o)
Borland C++ Builder 5 has some nice options including text highlighting and other things to make the text more readable.  Alternativly there is another simple compiler called SciTE which on last look was an extremly nice FREE compiler.  One of the nicest features is the fact that it shows with parenthesis go with which, and has platforms for multiple languages.  Hope this helps...

Oh yeah, I hadn't thought that you might mean text highlighting.  SciTE is actually just an editor (rather than a compiler) - it won't format your code (what is normally meant by beautify) in the way that bcpp will.  Of course, VC++ does the same (as does vim, and you get to feel like you're back in the 80's for free :-)

:q!
Avatar of JWTtheTh

ASKER

I should have known that alt f8 OPTION before. It does more than enough for me.

Thanks