What has to put when we are inserting as assembly language
code into the C code? or When we are inserting as assembly
language code into the C code we have to insert one thing
at the start and of the assembly language. What are they?
Answer Posted / vaishnavi
we can insert assembly code by using asm()
asm("assembly code")
The compiler will insert these asm code into the assembly code being generated, and hence the compiler-supplied and the user-supplied assembly will be combined
Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What is chain pointer in c?
What does c value mean?
What are the properties of union in c?
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd
What is a static variable in c?
Explain the difference between #include "..." And #include <...> In c?
What is the difference between procedural and declarative language?
How many keywords are there in c?
What is the purpose of sprintf() function?
What is a null pointer in c?
What is variable declaration and definition in c?
Why static is used in c?
What are the basic data types associated with c?
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
What are the types of type qualifiers in c?