is it possible to change the default calling convention in c ?
Answer / 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 |
What is typedef struct in c?
what is the role you expect in software industry?
Write a c program using for loop to print typical pattern if number of rows is entered by keyboard. ABCBA AB BA A A
What is structure padding ?
#include<stdio.h> main(0 { printf("\n %d %d %d",sizeof(3),sizeof("3"),sizeof(3)); }
How pointer is different from array?
what will be the output for the following main() { printf("hi" "hello"); }
If null and 0 are equivalent as null pointer constants, which should I use?
write a program for 7*8 = 56 ? without using * multiply operator ? output = 56
What are loops c?
What is a macro?
write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.