Which header file should you include if you are to develop a function which can accept variable number of arguments?
No Answer is Posted For this Question
Be the First to Post Answer
What is formal argument?
What is the easiest sorting method to use?
what are the advantage and disadvantage of recursion
When can a far pointer be used?
What is the use of #define preprocessor in c?
What is a pointer variable in c language?
Write a C program where input is: "My name is xyz". output is: "xyz is name My".
Write a code to determine the total number of stops an elevator would take to serve N number of people.
What is the role of && operator in a program code?
What is 1d array in c?
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
what is the output of the following program and explain the answer #include<stdio.h> exp() { main(5) } main(int a) { printf("%d",a); return; }