A function 'q' that accepts a pointer to a character as
argument and returns a pointer to an array of integer can
be declared as:
A)int (*q(char*)) []
B)int *q(char*) []
C)int(*q)(char*) []
D)None of the Above
Answer Posted / subbu
answer is d
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
Why is c fast?
how to execute a program using if else condition and the output should enter number and the number is odd only...
Tell me when would you use a pointer to a function?
What are control structures? What are the different types?
Why enum is used in c?
When would you use a pointer to a function?
Is malloc memset faster than calloc?
What's the difference between constant char *p and char * constant p?
What are the back slash character constants or escape sequence charactersavailable in c?
show how link list can be used to repersent the following polynomial i) 5x+2
What is the use of gets and puts?
where are auto variables stored? What are the characteristics of an auto variable?
How do you search data in a data file using random access method?
The statement, int(*x[]) () what does in indicate?
write a program to input 10 strings and compare without using strcmp() function. If the character of one string matches with the characters of another string , sort them and make it a single string ??? example:- str1="Aakash" st2="Himanshu" str="Uday" output:- Aakashimanshuday (please post the answer as quickly as possible)