So I have a pretty big program with a lot of stuff going on and need to find out what code is modifying the value of a certain variable. Is there anyway I could do this in visual studios?
Use the debugger! Put a breakpoint at where the variable is declared and maybe other places where its known to be used and then step through your program line by line. Use the watch/auto windows also.