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 merge sort in c?
write the program to find multiplication of 2-D matrix??????????
How to write a program to receive an integer & find its octal equivalent by using for loop?
dibakar & vekatesh..uttejana here..abt ur reply for in place reversal of linked list..wats p stands for there?
Why do we use pointer to pointer in c?
hello everybody can we change a the adress of a variabl i mean can i put for exemple for a int *p: &p=6 ?????????
Would you rather wait for the results of a quicksort, a linear search, or a bubble sort on a 200000 element array? 1) Quicksort 2) Linear Search 3) Bubble Sort
compute the nth mumber in the fibonacci sequence?
10 Answers Canon, HPL, Satyam, TCS,
How do you print only part of a string?
1. main() { printf("%d",printf("HelloSoft")); } Output?
What is the difference between char a[] = "string"; and char *p = "string"; ?
14 Answers Adobe, Honeywell, TCS,
If "AaBbCc" is passed to the char char x(*a) { a[0]?x(a+1):1; printf("%c",a[0]); return 1; } what will be the output?