what is the advantage of function pointer
Answer Posted / nupur
It is used to return more than one value to at a time to
the main program thus overcome the limitation of returnalso
it is used to change the value of the actual argument in
the called function which is otherwise not possible.
| Is This Answer Correct ? | 13 Yes | 5 No |
Post New Answer View All Answers
what do you mean by inline function in C?
Explain what is gets() function?
Give differences between - new and malloc() , delete and free() ?
What is the difference between break and continue?
How can I access an I o board directly?
write a progrmm in c language take user interface generate table using for loop?
GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA
write a program which the o/p should b in such a way that s triangle if I/p is 3,a Square/rectangle if I/P=4,a pentagon if I/P=5 and so on...forget about the I/P which is less than 3
What is bubble sort technique in c?
What are global variables?
What are the different types of objects used in c?
Explain what is a 'locale'?
What are the 32 keywords in c?
When I tried to go into a security sites I am denied access and a message appeared saying 'applet not initialize'. How can I rectify this problem.
#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }