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


Please Help Members By Posting Answers For Below Questions

What is chain pointer in c?

787


What does c value mean?

868


What are the properties of union in c?

812


When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd

841


What is a static variable in c?

873


Explain the difference between #include "..." And #include <...> In c?

802


What is the difference between procedural and declarative language?

896


How many keywords are there in c?

816


What is the purpose of sprintf() function?

819


What is a null pointer in c?

840


What is variable declaration and definition in c?

697


Why static is used in c?

837


What are the basic data types associated with c?

1041


main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }

1164


What are the types of type qualifiers in c?

846