![]() |
Yay C++ - Printable Version +- Mirage Source (https://mirage-engine.uk/forums) +-- Forum: Mirage Source (Nostalgia) (https://mirage-engine.uk/forums/forumdisplay.php?fid=61) +--- Forum: Archive (2006-2011) (https://mirage-engine.uk/forums/forumdisplay.php?fid=18) +---- Forum: Programming (https://mirage-engine.uk/forums/forumdisplay.php?fid=24) +----- Forum: General (https://mirage-engine.uk/forums/forumdisplay.php?fid=27) +----- Thread: Yay C++ (/showthread.php?tid=2741) |
Yay C++ - Tony - 12-04-2009 [code]#include void main() { const int iAmountOfArrays(200); int iaByteArray[iAmountOfArrays]; int iCurrentLoop(0); int iSearchArray; bool bValidArray; while (iCurrentLoop < iAmountOfArrays) { std::cout Re: Yay C++ - Acruno - 12-04-2009 Tony Wrote:It's actually fun to touch another language. YOU FUCKING LIE. Re: Yay C++ - Tony - 12-04-2009 Acruno Wrote:Tony Wrote:It's actually fun to touch another language. :lol: No, really. It's not like I never touched C++ before though, it's just I understand it better now. Comparing to VB6 I just went straight off to the source.. without tutorials, books or anything that regarded learning VB6. So I had alot of knowledge gaps, probably still do. Fresh starts are great. Re: Yay C++ - Jacob - 12-04-2009 You can post your c++ stuff in the General section of Programmers Haven. Re: Yay C++ - Tony - 12-04-2009 Dugor Wrote:You can post your c++ stuff in the General section of Programmers Haven. Oh alright, just wanted to ask though.. in C++ is namespace the same as types in VB6? Re: Yay C++ - Robin - 12-04-2009 Moved to correct section. Re: Yay C++ - Dragoons Master - 12-04-2009 Tony Wrote:No.Dugor Wrote:You can post your c++ stuff in the General section of Programmers Haven. Namespaces: "In general, a namespace is an abstract container providing context for the items (names, or technical terms, or words) it holds and allowing disambiguation of items having the same name (residing in different namespaces)." by Wikipedia Types are more like structs in C/C++. Re: Yay C++ - GIAKEN - 12-04-2009 Namespace is like class module referencing? Re: Yay C++ - Exadon - 15-05-2009 Tony, what compiler are you using? Thanks. Re: Yay C++ - Tony - 15-05-2009 VS Express Re: Yay C++ - GIAKEN - 15-05-2009 I use Dev-C++ ![]() |