Others have told me not to, because it's so different I'll have to relearn everything anyway. Thanks for the recommendations, though. well, C is a tiny language with huge libraries and C++ is a huge language with even bigger libraries not much different except from the object oriented usage of C++ and one other syntax difference in C, structs are called like this #include <stdlib.h>
struct my_struct
{
int an_integer;
float a_decimal;
char a_byte;
};
int main(int argc, char* argv[])
{
/*you must specify that my_struct is a struct*/
struct my_struct mystruct;
return 0;
} in C++ #include <cstdlib>
struct my_struct
{
int blah;
float bloh;
char meh;
};
int main(int argc, char** argv)
{
//don't need to specify that my_struct is a struct
my_struct mystruct;
return 0;
} From there on, the syntax is pretty similar.