Advertisement

I have a question about C++

Started by May 19, 2001 10:10 AM
1 comment, last by princeofcarnage 23 years, 8 months ago
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.
Advertisement
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.

This topic is closed to new replies.

Advertisement