Click here to Skip to main content
15,899,754 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Coding on hostel mannagement in c program Pin
Patrice T6-Feb-17 15:51
mvePatrice T6-Feb-17 15:51 
QuestionI tried PostMessage as well Pin
ForNow2-Feb-17 16:17
ForNow2-Feb-17 16:17 
AnswerRe: I tried PostMessage as well Pin
Victor Nijegorodov2-Feb-17 22:03
Victor Nijegorodov2-Feb-17 22:03 
AnswerRe: I tried PostMessage as well Pin
leon de boer2-Feb-17 23:48
leon de boer2-Feb-17 23:48 
QuestionIPC Thru WM_COPYDATA Pin
ForNow2-Feb-17 15:52
ForNow2-Feb-17 15:52 
AnswerRe: IPC Thru WM_COPYDATA Pin
Jochen Arndt2-Feb-17 21:36
professionalJochen Arndt2-Feb-17 21:36 
GeneralRe: IPC Thru WM_COPYDATA Pin
ForNow4-Feb-17 16:46
ForNow4-Feb-17 16:46 
GeneralRe: IPC Thru WM_COPYDATA Pin
Jochen Arndt4-Feb-17 23:37
professionalJochen Arndt4-Feb-17 23:37 
GeneralRe: IPC Thru WM_COPYDATA Pin
ForNow5-Feb-17 3:01
ForNow5-Feb-17 3:01 
GeneralRe: IPC Thru WM_COPYDATA Pin
ForNow5-Feb-17 14:19
ForNow5-Feb-17 14:19 
GeneralRe: IPC Thru WM_COPYDATA Pin
Rick York9-Feb-17 6:58
mveRick York9-Feb-17 6:58 
GeneralRe: IPC Thru WM_COPYDATA Pin
ForNow9-Feb-17 8:22
ForNow9-Feb-17 8:22 
AnswerRe: IPC Thru WM_COPYDATA Pin
leon de boer2-Feb-17 23:45
leon de boer2-Feb-17 23:45 
QuestionThr problem of the recursive algorithm to do binary search in a sorted array Pin
alalba2-Feb-17 15:37
alalba2-Feb-17 15:37 
AnswerRe: Thr problem of the recursive algorithm to do binary search in a sorted array Pin
Midi_Mick2-Feb-17 16:12
professionalMidi_Mick2-Feb-17 16:12 
GeneralRe: Thr problem of the recursive algorithm to do binary search in a sorted array Pin
alalba2-Feb-17 16:22
alalba2-Feb-17 16:22 
GeneralRe: Thr problem of the recursive algorithm to do binary search in a sorted array Pin
alalba3-Feb-17 4:05
alalba3-Feb-17 4:05 
AnswerRe: Thr problem of the recursive algorithm to do binary search in a sorted array Pin
leon de boer2-Feb-17 23:18
leon de boer2-Feb-17 23:18 
GeneralRe: Thr problem of the recursive algorithm to do binary search in a sorted array Pin
alalba3-Feb-17 4:25
alalba3-Feb-17 4:25 
GeneralRe: Thr problem of the recursive algorithm to do binary search in a sorted array Pin
leon de boer3-Feb-17 7:12
leon de boer3-Feb-17 7:12 
GeneralRe: Thr problem of the recursive algorithm to do binary search in a sorted array Pin
alalba3-Feb-17 12:46
alalba3-Feb-17 12:46 
SuggestionRe: Thr problem of the recursive algorithm to do binary search in a sorted array Pin
David Crow3-Feb-17 3:47
David Crow3-Feb-17 3:47 
GeneralRe: Thr problem of the recursive algorithm to do binary search in a sorted array Pin
alalba3-Feb-17 4:26
alalba3-Feb-17 4:26 
AnswerRe: Thr problem of the recursive algorithm to do binary search in a sorted array Pin
Patrice T8-Feb-17 6:20
mvePatrice T8-Feb-17 6:20 
Your code do not behave the way you expect, and you don't understand why !

There is an almost universal solution: Run your code on debugger step by step, inspect variables.
The debugger is here to show you what your code is doing and your task is to compare with what it should do.
There is no magic in the debugger, it don't find bugs, it just help you to. When the code don't do what is expected, you are close to a bug.

Debugger - Wikipedia, the free encyclopedia[^]
Mastering Debugging in Visual Studio 2010 - A Beginner's Guide[^]

The downside of this solution:
- It is a DIY, you are the one tracking the problem and finding its roots, which lead to the solution.
The upside of this solution:
- You see your code behavior, you match it against your expectations.

secondary effects
- Your will be proud of finding bugs yourself.
- Your skills will improve.

You should find pretty quickly what is wrong.
Patrice

“Everything should be made as simple as possible, but no simpler.” Albert Einstein

QuestionStupid build issue - has to be an include file issue.... Pin
charlieg2-Feb-17 15:23
charlieg2-Feb-17 15:23 

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.