I want to learn C language,
Could you explain to me step by step, how to debug the C program please?
I mean like Visual Basic debugger function, for example
1. Private Sub Command1_Click()
2. If Text1.Text = 3 Then
3. Text2.Text = "Three"
4. Else
5. Text2.Text = "Not Three"
6. End If
7. End Sub
first, in line 1 : add breakpoint
second, if i press F8 button, then line 1 is highlighted, once more time press F8 button, line 2 is highlighted and so on.