Hello everyone I was wondering if there is a way to make Visual Studios step into a function while I am debugging.. I am trying to see the value of a certain int and making sure it is what I need it to be.. but whenever I use step into visual studios just skips right over the function and it does all the calculations..
Is the function you want to step into in a different file? If so, did you compile that file with debug flags on? If you didn't, then VS won't be able to step into it. Try compiling that function again.