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

what is the maximum no. of bytes calloc can allocate

4 Answers   Mphasis,


Explain how can I prevent another program from modifying part of a file that I am modifying?

0 Answers  


Explain 'far' and 'near' pointers in c.

0 Answers  


Which is the best website to learn c programming?

0 Answers  


What are the different types of control structures?

0 Answers  






What is the difference between void main and main in c?

0 Answers  


Differentiate between ordinary variable and pointer in c.

0 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,


How do we swap or interchange any 2 numbers without using Temporary variable...Anybody can pls answer it.. Thanks in Advance

8 Answers  


Write a program that takes a 5 digit number and calculates 2 power that number and prints it

5 Answers   ABS, Accenture, HCL, Infosys, Infotech, SoftSolve, Software India, TCS, Vertex, Vimukti Technologies,


How to write a C program to determine the smallest among three nos using conditional operator?

2 Answers   Google,


Write a C program to multiply tho numbers without using arithmetic operator (+, -, *, /).

1 Answers  


Categories