how is visual studio .net different from c++
At school theres a contest tomorow. The school has upgraded there software and the C++ compiler I'm used to is gone, instead there is visual studio .net. I have a contest to write tomorow, its eather this or turing.
I want to use visual studio .net because turing has bugs in it with File I/O (They upgraded that too but I didn't have a chance to read bug fixes). Using visual studio .net I want to write code in c++ syntax, basicly I need to know how to do this
file I/O
functions
classes
structs
unions
How different is this than what I know of C++ (Turbo C++ compiler). e.g. is fopen, fread etc... the same. What differences should I consider? I heard people converting code from c++ to .net thats why I'm worried.
Thank you!
Re: how is visual studio .net different from c++
Quote:
How different is this than what I know of C++ (Turbo C++ compiler).
A lot, lot, lot different. The Turbo C++ compiler is a very old one, not compliant to the C++ standard. The .NET 2003 and .NET 2005 C++ compilers are both (almost entirely) compliant.
My recommendation for you is not to use it for the first time during a contest. Though you can still write code with fopen and fread, and of course the C++ syntax is the same, the unfamiliarity with the development environment will get you into trouble.