Quote:
|
Originally Posted by veiga2
I made some simple programs regarding simple use of c, such as creating a student record(Using fopen(),fclose()....structures(),string manipulations ) is that wat you call c++ for the console?
|
C++ is not the same as C. There are big differences between them. In C++ one uses fstream for file manipulation, classes instead of structures, which are essentially the same in C++ except for the default access, and use C++ std::strings instead of C strings (character arrays).
Read
this.