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 functions are in conio h?
What oops means?
I heard that you have to include stdio.h before calling printf. Why?
What is character constants?
What is use of integral promotions in c?
Is it possible to use curly brackets ({}) to enclose single line code in c program?
Explain the difference between ++u and u++?
main() { printf("hello"); fork(); }
What is scope and lifetime of a variable in c?
What are pragmas and what are they good for?
How can I display a percentage-done indication that updates itself in place, or show one of those twirling baton progress indicators?
Is it fine to write void main () or main () in c?
How are structure passing and returning implemented?
What is the mean of function?
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above