What is the use of function overloading in C?
No Answer is Posted For this Question
Be the First to Post Answer
can u write a program in C, which does not use = (eqaul)or any arithmatic assignment(like -=,+=,*= etc) operator to swap to number?
What is the use of in c?
What is the meaning of int *x[]();?
which of 'arrays' or 'pointers' are faster?
Explain how do you list a file’s date and time?
What is table lookup in c?
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
How can I write a function that takes a format string and a variable number of arguments?
What is the use of linkage in c language?
Can include files be nested?
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); }
write a program to generate 1st n fibonacci prime number