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

What is a pointer value and address in c?

0 Answers  


How do you write a program which produces its own source code as output?

0 Answers  


what is the output of the following code? main() { int I; I=0x10+010+10; printf("x=%x",I); } give detailed reason

3 Answers  


What is Memory leakage ?

2 Answers   HCL,


how to find out the union of two character arrays?

2 Answers  






Is it possible to execute code even after the program exits the main() function?

0 Answers  


What is structure packing ?

2 Answers   HP,


write an algorithm to get a sentence and reverse it in the following format: input : I am here opuput: Here Am I note: first letter of every word is capiatlised

3 Answers  


will the program compile? int i; scanf(ā€œ%dā€,i); printf(ā€œ%dā€,i);

3 Answers  


What are the salient features of c languages?

0 Answers  


How can I write data files which can be read on other machines with different word size, byte order, or floating point formats?

0 Answers  


The difference between printf and fprintf is ?

0 Answers   Baan Infotech,


Categories