Welcome to MSDN Blogs Sign in | Join | Help

September 2008 - Posts

I sometimes hear people complain that they tried to open a dump file in windbg , but couldn’t get sos running. First, make sure that you are loading the dump with the corresponding debugger – open an x86 dump with an x86 debugger and an x64 one with the Read More...
2 years ago I interviewed at Microsoft for a Software Development Engineer in Test – and I probably did well, since I am now working here. Lately, I interviewed people myself (mostly college hires). Looking back, I realize I did a very good thing at my Read More...
I wrote a simple C++ program that removes the duplicate spaces in a string. The function doing the work is RemoveDupSpaces : char * RemoveDupSpaces( char *s) { char *a = s; char *b = s; while (*a != '\0' ) { while (*a != ' ' && *a != '\0' ) *b++ Read More...
 
Page view tracker