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 / sivavendra
Yes,, we have to give the assembly code as inline function as follows.....
asm
{
"assembly instructions"
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are all different types of pointers in c?
How can I prevent another program from modifying part of a file that I am modifying?
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)
Why static is used in c?
Is there a built-in function in C that can be used for sorting data?
Do you have any idea how to compare array with pointer in c?
What is the difference between declaring a variable and defining a variable?
What language is c written?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
Explain how can I convert a string to a number?
What is pointer and structure in c?
Stimulate calculator using Switch-case-default statement for two numbers
An expression to whose value an operater is applied a) operand b) variable c) constant d) all of the above
What are the types of type specifiers?
how to print the character with maximum occurence and print that number of occurence too in a string given ?