is it possible to change the default calling convention in c ?
Answer Posted / prady
Yes,u can change it,because calling convention is not
language specific.it is compiler and platform dependent.
Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is merge sort in c?
What is the difference between %d and %i?
In a switch statement, what will happen if a break statement is omitted?
c programs are converted into machine language with the help of a) an interpreter b) a compiler c) an operatinf system d) none of the above
Can you please explain the difference between strcpy() and memcpy() function?
How can I write data files which can be read on other machines with different word size, byte order, or floating point formats?
Explain what is the benefit of using #define to declare a constant?
What does nil mean in c?
What does %p mean?
Why is python slower than c?
Can a variable be both static and volatile in c?
Is c is a low level language?
What is the use of define in c?
int i=10; printf("%d %d %d", i, i=20, i);
What are the 4 types of unions?