The compiler is what takes this code, and translates it into the machine code
How can I see the original C code after compilation in bin
You can't get back the original C source code from the compiled binary - there are many ways in C of producing the same end result so there isn't a unique source.
The process is called decompiling
If I have misunderstood your question and you want to know how to view the assembler that the compiler generates from your C code then that depends on the particular compiler but they can all do it. See How can I see the assembly code that is generated by a gcc (any flavor) compiler for a C/C++ program?