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
Differentiate Source Codes from Object Codes
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
What is function in c with example?
Tell me when is a void pointer used?
What is advantage of pointer in c?
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
How will you divide two numbers in a MACRO?
Explain what is wrong with this statement? Myname = ?robin?;
What is c value paradox explain?
What is assert and when would I use it?
What are categories used for in c?
Who invented b language?
What is the heap?
Explain what are multibyte characters?
differentiate built-in functions and user – defined functions.