I am using Visual Studio 2010 and suppose I have to write some program. Can I make it such that Visual Studio shows me this code translated into assembly language?
And if yes how do I do it? For example, I have a factorial program:
int fact(int n) {
if (n<=1)
return 1;
return n*fact(n-1);
}