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

which will return integer?
a) int*s ( )
b) ( int* ) s( )
c) int ( *s ) ( )

Answer Posted / chandu

c) int (*s)()
s is pointer to a function which returns integer

Is This Answer Correct ?    10 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain how do you determine the length of a string value that was stored in a variable?

1092


Do you know null pointer?

974


What is the c value paradox and how is it explained?

991


What is static function in c?

1064


Explain setjmp()?

1007


write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.

3913


Why do we use c for the speed of light?

1099


#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }

1002


What is the general form of function in c?

972


Is it better to use malloc() or calloc()?

1058


How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?

1026


How many types of sorting are there in c?

1010


What is a volatile keyword in c?

1111


Explain what is the difference between the expression '++a' and 'a++'?

1150


What is extern variable in c with example?

948