can you tell me when there is need to write assembly inside my C++ Code?
any examples, references and guides can be helpful.
can we write in java assembly?
ASM is used primarily when low-level processing is required. An example would be creating a thread without using the OS's API. Of course, ASM is processor dependant since each processor has its own ISA.