Quote:
Originally Posted by wireties
"C++ is a superset of C thus everything that works in C will work in C++. Your code looks OK."
|
This isn't entirely true. C++ is a modified version of C that incorporates true object oriented programming into it. There are also a few fundamental syntax changes (cout<<""; instead of printf(""), as one example) that may play havoc with direct conversions of code. If you are coming from C++ to C, the differences are easy and trivial enough to learn C.