2
votes
3answers
2k views
Vector iterator not dereferencable
Hi,
I have an abstract base class called Shape from which both Circle and Rectangle are derived, but when I execute the following code in VS 2005 I get the error Debug assertion failed. At …
1
vote
4answers
651 views
How can I find prime numbers through bit operations in C++?
How can I find prime numbers through bit operations in C++?
…
0
votes
4answers
76 views
Character decoding Conversion Function Implementation
Hi,
I need to implement a character encoding conversion function in C++ or C( Most desired ) from a custom encoding scheme( to support multiple languages in single encoding ) to UTF-8.
…
0
votes
What tool do you use to index C/C++ code?
Source insight.... it rocks with beautiful browsing shortcuts.. I never use mouse....
…
11
votes
Hidden Features of C++?
Array initialization in constructor.
For example in a class if we have a array of int as:
class clName
{
clName();
int a[10];
};
We can initialize …
0
votes
What are your favorite debugging techniques in C++?
If my program is too big I logically separate problem part and debug it independently. It gives an opportunity for code to be more modular also
…
1
vote
How to convert string from one charset to another in C++?
You can use libiconv (Google it ), it supports many encodings.
…
