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
Write a program that takes a 5 digit number and calculates 2 power that number and prints it(should not use big integers and exponential functions)
Explain modulus operator.
Can you write the function prototype, definition and mention the other requirements.
Write a c program to build a heap method using Pointer to function and pointer to structure ?
When do we get logical errors?
How can you restore a redirected standard stream?
An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array
Are there constructors in c?
Explain the difference between strcpy() and memcpy() function?
Does free set pointer to null?
Write the syntax and purpose of a switch statement in C.
How do you define structure?
Is a pointer a kind of array?
Explain output of printf("Hello World"-'A'+'B'); ?
Why c is faster than c++?