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 union in c?

0 Answers  


how can f be used for both float and double arguments in printf? Are not they different types?

0 Answers  


Which of the following about the C comments is incorrect ? a.commentscan go over multiple lines b.comments can start any where in the line c.a line can contain comments with out any language statements d.comments can occur within comments

6 Answers   TCS,


what is mean by Garbage collection ? Please answer me. Advance thanks.

4 Answers   Excel,


which of the following go out of the loopo if expn 2 becoming false a.while(expn 1){...if(expn 2)continue;} b.while(!expn 1){if(expn 2)continue;...} c.do{..if(expn 1)continue;..}while(expn 2); d.while(!expn 2){if(expn 1)continue;..}

4 Answers   TCS,






What is key word in c language?

4 Answers   ABC,


which type of question asked from c / c++ in interview.

2 Answers  


What is difference between constant pointer and constant variable?

0 Answers   Hexaware,


what r the cpu registers r ther?

1 Answers  


5. distance conversion: Convert a distance from miles to kilometers .there are 5280 feets per mile,12 inches per foot .2.54 centimeters per inch and 100000centimeters per kilometer

4 Answers  


What is the right type to use for boolean values in c? Is there a standard type?

0 Answers  


Please write the area of a RIGHT ANGLED TRIANGLE.

1 Answers  


Categories