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 the use of pointers in C?
explain what is a newline escape sequence?
#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); }
Describe explain how arrays can be passed to a user defined function
What are the rules for identifiers in c?
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.
How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?
How do I swap bytes?
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays
What is the use of in c?
What is the use of linkage in c language?
How can I delete a file?
What is use of integral promotions in c?
Can you mix old-style and new-style function syntax?
What are the advantages and disadvantages of a heap?