Search Results

1
vote

Simple Frameworks for Displaying Bitmaps and Handling Button Presses

Maybe the way to go is something like Clutter or Allegro. If you check in this …
2
votes

C++ IDE for Linux?

I quite like Ultimate++'s IDE. It has some features that were designed to use with their own library (which, BTW, is quite a nice toolkit if …
1
vote

Needless pointer-casts in C

Actually, the only way a cast could hide an error is if you were converting from one datatype to an smaller datatype and lost data, or if you were converting pears to apples. Take the following exa …
0
votes

How do I transfer a file using wininet that is readable by a php script?

Here's a general description of the things involved in that. Basically, you have to cr …
1
vote

What is the difference between “VC++” and “C++” ?

Well, Visual C++ used to stand for the Microsoft C++ compiler plus the MFC library. Basically there's no difference in the language itself, but VC++ includes a library, and some IDE support, for ea …
1
vote

Which standard c++ classes cannot be reimplemented in c++?

All classes in the standard library, by definition, must be implemented in C++. Some of them hide some obscure language/compiler constructs, but still are just wrappers ar …