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...

Explain following declaration
int *P(void);
and
int (*p)(char *a);

Answer Posted / tibu

int *p(void) - says this is function with null parameter
and returns a pointer to an integer.

int (*p)(char *a) - says this is function with a pointer to
a char a as parameter and returns a pointer to an integer.

Is This Answer Correct ?    19 Yes 19 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain how are 16- and 32-bit numbers stored?

1304


Which of the following operators is incorrect and why? ( >=, <=, <>, ==)

1222


Explain what is the concatenation operator?

1230


How is a pointer variable declared?

1156


What are pointers really good for, anyway?

1115


Are there any problems with performing mathematical operations on different variable types?

1098


Are pointers integer?

1068


What is the easiest sorting method to use?

1233


a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion

2838


Why is event driven programming or procedural programming, better within specific scenario?

2479


Explain threaded binary trees?

1208


What is the heap?

1258


What is the ANSI C Standard?

1327


What does the function toupper() do?

1187


Write a code to generate a series where the next element is the sum of last k terms.

1287