2
votes
6answers
107 views
Float addition promoted to double?
I had a small WTF moment this morning. Ths WTF can be summarized with this:
float x = 0.2f;
float y = 0.1f;
float z = x + y;
assert(z == x + y); //This assert is triggered! (Atleast with visual …
1
vote
3answers
106 views
Why does compiler generate error?
Why does compiler generate error?
template<class T>
void ignore (const T &) {}
void f() {
ignore(std::endl);
}
Compiler VS2008 gives the following error: cannot deduce template …
3
votes
7answers
125 views
Calculating the Amount of Combinations
Cheers,
I know you can get the amount of combinations with the following formula (without repetition and order is not important):
// Choose r from n
n! / r!(n - r)!
However, I don't know how to …
0
votes
2answers
38 views
Why is my glutWireCube not placed in origin?
I have the following OpenGL code in the display function:
glLoadIdentity();
gluLookAt(eyex, eyey, eyez, atx, aty, atz, upx, upy, upz);
// called as: gluLookAt(20, 5, 5, -20, 5, 5, 0, 1, 0);
axis();
…
0
votes
3answers
99 views
strange output in comparision of float with float literal
float f = 0.7;
if( f == 0.7 )
printf("equal");
else
printf("not equal");
Why output is -> not equal ????
Why is happens so ?
0
votes
5answers
75 views
Float Addition issue
Dot Net C++
float xMin = 20000.0;
float xOff = 0.001;
float xMax = xMin + xOff;
xMax is becoming 20000.002 instead of 20000.001
Any fix for this
3
votes
7answers
185 views
What’s C++ Really Doing When I Accidently Use a Variables to Declare Array Length?
I was helping a friend with some C++ homework. I warned said friend that the kind of programming I do (PHP, Perl, Python) is pretty different from C++, and there were no guarantees I wouldn't tell …
1
vote
5answers
57 views
Template with static functions vs object with non-static functions in overloaded operator
Which approach is the better one and why?
template<typename T>
struct assistant {
T sum(const T& x, const T& y) const { ... }
};
template<typename T>
T operator+ (const …
0
votes
2answers
14 views
msgStore was not declared in this scope (XCode)
I'm implementing callback routines for external static C++ library to be used in Objective-C project. Now I have trouble moving data between callback and normal routines. As you can see below my …
0
votes
0answers
14 views
Audio Device, change Speaker setup
Hi Guys,
I want to change from my program the speaker setup, which is under speaker settings / advanced... section.
I tried to find maybe there is some sort of registry entry but no luck till now …
0
votes
0answers
35 views
C++ and Thrift: Reference needed to get started
Hello,
I have read about Thrift while trying to find out how to use Google Protocol Buffers. I have been searching for some reference that shows how to go about using it with a simple working example …
0
votes
1answer
16 views
Converting existing C++ web service to a load balanced server?
We have a C++ (SOAP-based) web service deployed Using Systinet C++ Server, that has a single port for all the incoming connections from Java front-end.
However recently in production environment when …
2
votes
4answers
59 views
Types in a public c++ API
I'm writing a library and wonder what's the best practise for datatypes used in a public API.
Given the funtion
void foo (int bar)
which expects an index to some internal array/container. What …
2
votes
5answers
103 views
Jump Table Switch Case question
Hi. I am trying to understand some things about jump tables and its relationship between a switch case statement.
I was told that a jump table is a O(1) structure that the compiler generates which …
0
votes
1answer
48 views
Is there any open source clinic software which develop with C++?
Please recommended some good open source C++ projects, and please add your remarks on these projects
Thanks
