Multiple choice technology programming languages How will you get the assembly code from a C raw code? asmb <filename> gcc -S <filename> ; cat <filename.s> as <filename.s> None Reveal answer Fill a bubble to check yourself B Correct answer Explanation Using gcc -S compiles C code into assembly and outputs it to `, which is then displayed viacat. Other options likeasmbdo not exist, andas` is the assembler used to compile assembly into machine code, not raw C into assembly.