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



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

Answer / chandu

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

Is This Answer Correct ?    10 Yes 0 No

Post New Answer

More C Interview Questions

How #define works?

0 Answers  


consider the following program sigment int n,sum=1; switch(n) { case 2:sum=sum+2; case 3:sum*=2; break; default:sum=0;} if n=2, what is the value of sum a.0 b.6 c.3 d.none

7 Answers   TCS,


find a number whether it is even or odd without using any control structures and relational operators?

22 Answers   Microsoft, Shashank Private Limited,


What is the size of structure pointer in c?

0 Answers  


write a c program to store and print name,address,roll.no of a student using structures?

7 Answers  






Write a program to add the following ¼+2/4+3/4+5/3+6/3+... (Like up to any 12 no.s)

1 Answers   HTC,


Is it possible to initialize a variable at the time it was declared?

0 Answers  


write a programme to convert temperature from farenheit to celcius?

4 Answers   IBM,


why we need function pointers?

3 Answers  


What does. int *x[](); means ?

0 Answers   Wilco,


What is volatile c?

0 Answers  


Why is this loop always executing once?

0 Answers  


Categories