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


Please Help Members By Posting Answers For Below Questions

What is the use of pointers in C?

877


explain what is a newline escape sequence?

910


#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }

1048


Describe explain how arrays can be passed to a user defined function

888


What are the rules for identifiers in c?

856


Write a C program that will accept a hexadecimal number as input and then display a menu that will permit any of the following operations to be carried out: Display the hexadecimal equivalent of the one's complement. (b) Carry out a masking operation and then display the hexadecimal equivalent of the result. (c) Carry out a bit shifting operation and then display the hexadecimal equivalent of the result. (d) Exit. If the masking operation is selected, prompt the user lor the type of operation (bitwise and, bitwise exclusive or, or bitwise or) and then a (hexadecimal) value for the mask. If the bit shifting operation is selected. prompt the user for the type of shift (left or right), and then the number of bits. Test the program with several different (hexadecimal) input values of your own choice.

5154


How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?

860


How do I swap bytes?

876


Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays

2151


What is the use of in c?

798


What is the use of linkage in c language?

860


How can I delete a file?

872


What is use of integral promotions in c?

920


Can you mix old-style and new-style function syntax?

889


What are the advantages and disadvantages of a heap?

966