I have a question about C++
Is there going to be any tutorials on C++ programming instead of C? Also, if someone has a C programming tutorial, and all I know is C++, is C++ the same as C? I''m asking this because I''m getting into game programming. Please help me! Thanks
If it''s C++ tutorials you''re after, check out the great links from this very site (have a look under the "New? Start Here" link at the top of the page.
And if you know C++, then you''ll be able to understand C very easily, since C++ is a superset of C (i.e. it has all it''s features plus a few of it''s own).
War Worlds - A 3D Real-Time Strategy game in development.
And if you know C++, then you''ll be able to understand C very easily, since C++ is a superset of C (i.e. it has all it''s features plus a few of it''s own).
War Worlds - A 3D Real-Time Strategy game in development.
There are some minimal differences between C and C++ that C++ doesn''t include. Some C code won''t compile with a C++ compiler (unless the compiler also compiles C code), for instance C++ requires you to cast void pointers to a specific type before you use them. C++ is generally more strongly-typed than C, and traps more errors at compile time.
Harry.
Harry.
Harry.
This topic is closed to new replies.
Advertisement
Popular Topics
Advertisement
Recommended Tutorials
Advertisement