I'm working on my C programming class and we made our first Hello world program in Visual Studio 2010. I can't wait for the real interesting stuff.
English
-
do you mean c++ ? visual studio 10 and 12 ( and 8 i guess ) only compile as C if you straight up force it too.
-
Yup. It's weird man. We're using the C++ Visual Studio 2010 and we're learning C.
-
by "learning C" do you just mean that classes and object orientation isn't covered? C vs C++ is a weird boundry. Anything that is valid C is valid C++ but not everything C++ is valid C.
-
Yup. We're not doing OOP and we might touch on classes at the end of this semester. We have a really short semester to cover all the material from C.
-
touch on classes. without using c++ that would be fun. HEY STUDENTS. GET READY FOR FUNCTION POINTERS struct Rectangle { -----float Width; -----float Height; -----float (*CalculateArea)(float w,float h); };