CarlosCavallo
CarlosCavallo

Reputation: 33

Visual Studio Community 2015 and C Language Debugging

When I debug a C program and press F11, for example, on strcmp instruction, the debugger open a window with strcmp.asm to continue debugging the strcmp instructions in assembler. How can I stop this behavior ?

Upvotes: 0

Views: 66

Answers (1)

Lundin
Lundin

Reputation: 213812

F10 = step over functions.
F11 = step into functions.

Press the appropriate button when single-stepping.

Upvotes: 1

Related Questions