sorry id this question is not sensible just i am interesting i am using visual studio 2010 and suppose i have write some program can i make such that visual studio show me this code translated into assembly language? and if yes how do it? for example i have factorial program
int fact(int n){
if (n<=1) return 1;
return n*fact(n-1);
thanks very much