What are actual arguments?


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

Post New Answer

More C Interview Questions

Can include files be nested?

0 Answers  


Which is the best website to learn c programming?

0 Answers  


How do I get a null pointer in my programs?

0 Answers  


What is c method?

0 Answers  


What is the memory allocated by the following definition ? int (*x)[10];

4 Answers   ADITI, Wipro,






write a program to swap two variables a=5 , b= 10 without using third variable

5 Answers  


What is 02d in c?

0 Answers  


why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above

0 Answers  


what is develop in c language

2 Answers  


why we shiuld use main keyword in C

5 Answers  


How can you find out how much memory is available?

0 Answers  


main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }

4 Answers   Vector,


Categories