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
Explain how do you determine the length of a string value that was stored in a variable?
Do you know null pointer?
What is the c value paradox and how is it explained?
What is static function in c?
Explain setjmp()?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
Why do we use c for the speed of light?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
What is the general form of function in c?
Is it better to use malloc() or calloc()?
How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?
How many types of sorting are there in c?
What is a volatile keyword in c?
Explain what is the difference between the expression '++a' and 'a++'?
What is extern variable in c with example?