View Single Post
Old May 27th, 2006, 4:57 AM   #8
nnxion
Programming Guru
 
nnxion's Avatar
 
Join Date: Jun 2005
Location: elemental plane
Posts: 1,429
Rep Power: 5 nnxion is on a distinguished road
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.
__________________
"Employ your time in improving yourself by other men's writings, so that you shall gain easily what others have labored hard for."
-- Socrates
nnxion is offline   Reply With Quote