Click here to Skip to main content
15,885,919 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Once Again Assert in Release and I am lost I finally figured out the bug .. My reflections Pin
ForNow10-Sep-17 12:50
ForNow10-Sep-17 12:50 
GeneralDeclaration Confuse Pin
Mr. Anup Roy31-Aug-17 6:38
professionalMr. Anup Roy31-Aug-17 6:38 
GeneralRe: Declaration Confuse Pin
leon de boer31-Aug-17 8:37
leon de boer31-Aug-17 8:37 
GeneralSum Multiple Value At a Time Pin
Mr. Anup Roy30-Aug-17 6:18
professionalMr. Anup Roy30-Aug-17 6:18 
GeneralRe: Sum Multiple Value At a Time Pin
jeron130-Aug-17 8:10
jeron130-Aug-17 8:10 
GeneralRe: Sum Multiple Value At a Time Pin
Mr. Anup Roy31-Aug-17 4:25
professionalMr. Anup Roy31-Aug-17 4:25 
GeneralRe: Sum Multiple Value At a Time Pin
jeron131-Aug-17 5:38
jeron131-Aug-17 5:38 
SuggestionRe: Sum Multiple Value At a Time Pin
David Crow30-Aug-17 10:31
David Crow30-Aug-17 10:31 
You'd need to use an array and a loop. Something like:
int hours[5] = {0};
for (int x = 0; x < 5; x++)
{
    cout << "Enter hours worked for day " << (x + 1) << ": ";
    cin >> hours[x];
}

"One man's wage rise is another man's price increase." - Harold Wilson

"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons

"You can easily judge the character of a man by how he treats those who can do nothing for him." - James D. Miles


GeneralRe: Sum Multiple Value At a Time Pin
Mr. Anup Roy31-Aug-17 4:27
professionalMr. Anup Roy31-Aug-17 4:27 
QuestionCWinThread Termination Pin
Lakshminaryana A29-Aug-17 18:38
Lakshminaryana A29-Aug-17 18:38 
QuestionRe: CWinThread Termination Pin
Richard MacCutchan29-Aug-17 21:02
mveRichard MacCutchan29-Aug-17 21:02 
AnswerRe: CWinThread Termination Pin
Jochen Arndt29-Aug-17 21:27
professionalJochen Arndt29-Aug-17 21:27 
GeneralRe: CWinThread Termination Pin
Lakshminaryana A29-Aug-17 23:17
Lakshminaryana A29-Aug-17 23:17 
GeneralRe: CWinThread Termination Pin
Jochen Arndt29-Aug-17 23:33
professionalJochen Arndt29-Aug-17 23:33 
AnswerRe: CWinThread Termination Pin
Victor Nijegorodov30-Aug-17 5:54
Victor Nijegorodov30-Aug-17 5:54 
GeneralRe: CWinThread Termination Pin
David Crow30-Aug-17 10:27
David Crow30-Aug-17 10:27 
QuestionC: warning: excess elements in array initializer Pin
Member 1326117527-Aug-17 22:27
Member 1326117527-Aug-17 22:27 
AnswerRe: C: warning: excess elements in array initializer Pin
Jochen Arndt27-Aug-17 22:47
professionalJochen Arndt27-Aug-17 22:47 
GeneralRe: C: warning: excess elements in array initializer Pin
Richard Andrew x6430-Aug-17 13:06
professionalRichard Andrew x6430-Aug-17 13:06 
GeneralRe: C: warning: excess elements in array initializer Pin
Jochen Arndt30-Aug-17 21:42
professionalJochen Arndt30-Aug-17 21:42 
GeneralRe: C: warning: excess elements in array initializer Pin
Richard MacCutchan30-Aug-17 22:39
mveRichard MacCutchan30-Aug-17 22:39 
GeneralRe: C: warning: excess elements in array initializer Pin
Jochen Arndt30-Aug-17 23:15
professionalJochen Arndt30-Aug-17 23:15 
GeneralRe: C: warning: excess elements in array initializer Pin
Richard MacCutchan30-Aug-17 23:30
mveRichard MacCutchan30-Aug-17 23:30 
GeneralRe: C: warning: excess elements in array initializer Pin
Jochen Arndt30-Aug-17 23:59
professionalJochen Arndt30-Aug-17 23:59 
GeneralRe: C: warning: excess elements in array initializer Pin
Richard MacCutchan31-Aug-17 0:47
mveRichard MacCutchan31-Aug-17 0:47 

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.