Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

where can function pointers be used?

Answer Posted / vadivel t

Mostly fuction pointers are used in the situation, where
the callback fuctions are needed...

--
VEL

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How do you initialize pointer variables?

1146


1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.

2851


write a program to print largest number of each row of a 2D array

2372


What is meant by operator precedence?

1202


What is the use of a static variable in c?

1105


#include #include struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.

6389


Is that possible to add pointers to each other?

1421


What is typedef example?

1255


Explain which function in c can be used to append a string to another string?

1136


Why double pointer is used in c?

1087


What are the data types present in c?

1234


Tell me when is a void pointer used?

1235


What is wrong in this statement? scanf(ā€œ%dā€,whatnumber);

1285


What is the main difference between calloc () and malloc ()?

1230


What is call by reference in functions?

1533