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
I need previous papers of CSC.......plz help out by posting them.......
write a program to remove occurrences the word from entered text?
Juxtapose the use of override with new. What is shadowing?
Can you write the algorithm for Queue?
0 Answers College School Exams Tests, TCS,
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
#define d 10+10 main() { printf("%d",d*d); }
write a pgm to print 1 1 2 1 1 2 3 2 1 1 2 3 4 3 2 1
What’s a signal? Explain what do I use signals for?
What is assignment operator?
Can you please explain the difference between strcpy() and memcpy() function?
void main(int argc,char *argv[],char *env[]) { int i; for(i=1;i<argc;i++) printf("%s",env[i]); }
Is the following code legal? struct a { int x; struct a b; }