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
Which header file is used for clrscr?
What is the output of below code? main() { static in a=5; printf("%3d",a--); if(a) main(); }
An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above
the statement while(i) puts the entire logic in loop. this loop is called a) indefinite loop b) definite loop c) loop syntax wrong d) none of the above
Write a program in C to reverse a number by recursive function?
Why do we need functions in c?
Implement a function that returns the 5th element from the end in a singly linked list of integers in one pass.
What are the modifiers available in c programming language?
What is the difference between ++a and a++?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
What is the total generic pointer type?
What is Dynamic memory allocation in C? Name the dynamic allocation functions.