python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Best data type and rounding function for weight and currency variables
I need to multiply two values - weight and currency (Visual c++, mfc). E.g.:
a=11.121;
b=12.11;
c=a*b;
Next I have to round "с" to 2 digits after point (currency value, e.g. 134.68). What...

Сергей Соколов
Votes: 0
Answers: 1
VC++08 make MFC apps DPI aware without updating VC++
I may not have the option to simply update to a more recent VC++ version as would be ideal - the project is big and the update could break a lot of things, plus my lead may tell me not to pursue this....
PBandJ
Votes: 0
Answers: 1
Building a C++ project with two different configurations in the same solution configuration
We have multiple C++ projects in our solution that all support different configurations (I'll omit some uninteresting ones here):
Shared (Debug, DebugMD)
A (DebugMD)
B (Debug)
Both A and B depend on...

Timo
Votes: 0
Answers: 0
Operating through data container map<string,map<string,int>>
I need to find the fastest way from one city to other using djikstra algorithm (working on directed graph with weights), but i have to use this specific container. I have a problem with saving data pr...
kubsde
Votes: 0
Answers: 2