How to see the assembly code from a Ansi C hello world written in Visual Studio? -
i'm playing ansi c in visual studio, created simple ansi c program (i had change vs configuration not use cpp ansi c)
int = 0; int b = 0; printf("hello world! \n\n"); system("pause"); return 0;
i compiled , generated this:
first of expecting simple .exe , don't know why .ilk , .pdb created question here how can see assembly code generated compiled c program?
thanks
the .ilk
incremental linking file, can speed linking when make minor changes code, re-link.
the .pdb
program database--use when debugging.
to assembly language code translates, can compile /fa
.