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
What is meant by int main ()?
What is the difference between Printf(..) and sprint(...) ?
How can you draw circles in C?
Why c language?
What is character constants?
What are the different data types in C?
What is the easiest sorting method to use?
How a string is stored in c?
What does the function toupper() do?
What are the functions to open and close file in c language?
What is the most efficient way to count the number of bits which are set in an integer?
What is d'n in c?
What math functions are available for integers? For floating point?
Why do we use int main instead of void main in c?
program to convert a integer to string in c language'