I guess (again) that you've hit the "wrong" board. We do not deal with dot.NET here, or Visual C++. But there's lots of boards that do at codeguru. Maybe somebody else is right into that stuff and...
Another alternative is Qt (http://trolltech.com). I use it since its first release. However, to make it REALLY work on every platform and ARCHITECTURE, you need to know a little about makefiles, and...
I fulfill all requirements listed above, from educational background, over roughly two decades of professional experience, even down to (dual) US/EU-25 citizenship. So my question is:...
Simply create a class (something like "mySession.class.php"), that holds appropriate members as well as methods that access those members. You, then, may decide to persist all that info in a db or...
I agree with Lindley. Sizes, even size of an int, in C++ is implementation-defined. Consider it a "dependency". There's lot of differences in mem requirements and access -even among different...
I am first and foremost used to C code, stuff that has to be compiled prior to its usage. Now, confronted with that "asynchronous javascript and xml" (as I learned this name is...
Paul is perfectly right, array bounds must be a constant expression. A good work-around (in cases where you NEED to make the bound(s) variable) is simply to using a vector: