How can I discover how many arguments a function was actually called with?


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

Post New Answer

More C Interview Questions

Explain how can I open a file so that other programs can update it at the same time?

0 Answers  


Write a program to generate prime factors of a given integer?

2 Answers  


what is link list?

3 Answers  


Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays

0 Answers  


How can I find the modification date of a file?

0 Answers   Celstream,


What are extern variables in c?

0 Answers  


What is a far pointer in c?

0 Answers  


Which function in C can be used to append a string to another string?

0 Answers  


What does malloc () calloc () realloc () free () do?

0 Answers  


WHY DO WE USE A TERMINATOR IN C LANGUAGE?

2 Answers  


what is the purpose of the following code, and is there any problem with the code? void fn(long* p1, long* p2) { register int x = *p1; register int y = *p2; x ^= y; y ^= x; x ^= y; *p1 = x; *p2 = y; }

1 Answers   Google,


Is c pass by value or reference?

0 Answers  


Categories