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 |
What is NULL pointer?
What is the use of bit field?
How can I rethow can I return a sequence of random numbers which dont repeat at all?
main() { int age; float ht; printf("Enter height and age"); scanf("%d%d",&height,&age); if((age<=20)&&(ht>=5)) {printf("She loves you");} else {printf("She loves you");} }
What does char * * argv mean in c?
What do you understand by friend-functions? How are they used?
write a C program : To find out the number of identical words in two files . the file name should be taken as command line argument .
What are the modifiers available in c programming language?
State two uses of pointers in C?
What is modeling?
What are linker error?
what is C?