1
vote
1answer
39 views

How to start running with MSVC

Starting from the beginning !! can anybody here help me how to start running C project with MSVC ? I have all the source files under: src/ directory all the header files under: inc/ directory ...
1
vote
1answer
47 views

How to run C project on msvc 2010

I am familiar with running a CPP project on MSVC and debugging there is much comfortable. Same feature is applicable for C project or not ? Can anybody please let me know how to start running with a ...
1
vote
1answer
107 views

Win32 “C” Unhandled Exception breaks at wrong location

This has been puzzling me for the last several days! We have an application where we're running into a divide-by-zero. That application is purposely built to raise exceptions in such cases, with a ...
2
votes
2answers
717 views

Cannot step into the code while debugging a C DLL file in Visual Studio 2012

I have a separate Visual Studio solution with the DLL written in C. I use it in another solution; in a console C++ project. While debugging the console project I step into a DLL function. However, ...
0
votes
3answers
60 views

what does the 0x0022f844 in the value column of watch represent while debugging?

I use VC2010 and I see that the same data is represented differently while debugging and writing. for example : 37487840ca673239dc72f9eeb746947a is represented as 0x0022f844 ...
0
votes
6answers
2k views

How do I debug existing C programs with Visual Studio 2010 Professional?

how can I use the Visual Studio Debugger on existing C programs I found in a textbook? I want to debug these little examples one by one, but without the overhead of creating a full project for each ...