can we change the default calling convention in c if yes
than how.........?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

what is out put of the following code? #include class Base { Base() { cout<<"constructor base"; } ~Base() { cout<<"destructor base"; } } class Derived:public Base { Derived() { cout<<"constructor derived"; } ~Derived() { cout<<"destructor derived"; } } void main() { Base *var=new Derived(); delete var; }

3 Answers   Honeywell,


write a program to print calender using for loop.

1 Answers   HCL, TCS,


Is a house a mass structure?

0 Answers  


How do you list a file’s date and time?

0 Answers  


In a switch statement, what will happen if a break statement is omitted?

0 Answers  






Difference between data structure and data base.

7 Answers   CTS, Value Labs, Zoho,


main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....

2 Answers  


Which is the best website to learn c programming?

0 Answers  


What is dangling pointer in c?

0 Answers  


In C, What is the #line used for?

2 Answers  


Write a program which calculate sum of several number and input it into an array. Then, the sum of all the number in the array is calculated.

2 Answers  


how many header file is in C language ?

44 Answers   College School Exams Tests, CTS, IBM, IMS, Infosys, ME, Sign Solutions, Wipro, XVT,


Categories