I\'ve been learning C at Varsity for just shy of 2months now, and next year we\'ll be moving on to C++.
Are there any habits I should get into with my C programmin
C++ is object orientated, C is not. So common things like keeping pointer code clean and comment's on functions/methods and understand how to not get infinite preprocessor loops using #IFDEFs.
However the object orientated approach can often be nicer to actually code thinking about objects. So you need to think about the new features difference.