eclipse
C++ Development in Eclipse
Insert Spaces, not Tabs The tab key is great for formatting lines of code, since it will auto-indent. However, you should not allow tab characters to be inserted in your code since it causes inconsistent formatting in various editors. Rather, always insert spaces rather than tabs. In Eclipse, you can do Read more…