Click here to Skip to main content
15,886,199 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: how do I verify - "all the ducks in the row "? Pin
trønderen25-Mar-22 12:58
trønderen25-Mar-22 12:58 
GeneralRe: how do I verify - "all the ducks in the row "? Pin
k505426-Mar-22 5:07
mvek505426-Mar-22 5:07 
GeneralRe: how do I verify - "all the ducks in the row "? Pin
Richard MacCutchan25-Mar-22 22:51
mveRichard MacCutchan25-Mar-22 22:51 
GeneralMessage Closed Pin
28-Mar-22 14:44
Member 1496877128-Mar-22 14:44 
GeneralMessage Closed Pin
29-Mar-22 6:05
Member 1496877129-Mar-22 6:05 
GeneralRe: how do I verify - "all the ducks in the row "? Pin
k505429-Mar-22 6:55
mvek505429-Mar-22 6:55 
QuestionHelp with calculating percentage in C Pin
ForNow20-Mar-22 5:37
ForNow20-Mar-22 5:37 
AnswerRe: Help with calculating percentage in C Pin
k505420-Mar-22 5:54
mvek505420-Mar-22 5:54 
Presumably you're doing something like
C
int total = 100;
int unalloc = 96;
double percent = unalloc/total;
So the problem here is that since unaloc and total are both int, the calculation is done in integer math, and then promoted to double. What you need to do is to promote either operand to the division to double (or both):
C
double percent = (double)unalloc/total:
Keep Calm and Carry On

GeneralRe: Help with calculating percentage in C Pin
ForNow20-Mar-22 6:47
ForNow20-Mar-22 6:47 
GeneralRe: Help with calculating percentage in C Pin
Calin Negru20-Mar-22 8:41
Calin Negru20-Mar-22 8:41 
JokeRe: Help with calculating percentage in C Pin
RedDk21-Mar-22 7:16
RedDk21-Mar-22 7:16 
AnswerRe: Help with calculating percentage in C Pin
Victor Nijegorodov20-Mar-22 7:42
Victor Nijegorodov20-Mar-22 7:42 
GeneralRe: Help with calculating percentage in C Pin
ForNow20-Mar-22 9:02
ForNow20-Mar-22 9:02 
QuestionMessage Closed Pin
18-Mar-22 15:23
Member 1496877118-Mar-22 15:23 
AnswerRe: How to pass pointers and process them using ellipsis ? Pin
Richard MacCutchan18-Mar-22 23:08
mveRichard MacCutchan18-Mar-22 23:08 
GeneralMessage Closed Pin
19-Mar-22 4:06
Member 1496877119-Mar-22 4:06 
GeneralRe: How to pass pointers and process them using ellipsis ? Pin
k505419-Mar-22 5:01
mvek505419-Mar-22 5:01 
GeneralMessage Closed Pin
19-Mar-22 8:44
Member 1496877119-Mar-22 8:44 
GeneralRe: How to pass pointers and process them using ellipsis ? Pin
k505419-Mar-22 12:00
mvek505419-Mar-22 12:00 
GeneralRe: How to pass pointers and process them using ellipsis ? Pin
Richard MacCutchan19-Mar-22 6:11
mveRichard MacCutchan19-Mar-22 6:11 
Questionworking with pointers Pin
Calin Negru17-Mar-22 21:48
Calin Negru17-Mar-22 21:48 
AnswerRe: working with pointers Pin
Victor Nijegorodov17-Mar-22 23:16
Victor Nijegorodov17-Mar-22 23:16 
GeneralRe: working with pointers Pin
Calin Negru18-Mar-22 0:12
Calin Negru18-Mar-22 0:12 
GeneralRe: working with pointers Pin
Victor Nijegorodov18-Mar-22 1:39
Victor Nijegorodov18-Mar-22 1:39 
GeneralRe: working with pointers Pin
Calin Negru18-Mar-22 10:20
Calin Negru18-Mar-22 10:20 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.