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
How do you search data in a data file using random access method?
why we wont use '&' sing in aceesing the string using scanf
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
What is the code for 3 questions and answer check in VisualBasic.Net?
Take an MxN matrice from user and then sum upper diagonal in a variable and lower diagonal in a separate variables. Print the result
What is the best way to store flag values in a program?
Explain how do you print an address?
a formula,a series of steps,or well defined set of rules for solving a problem a) algorithem b) program c) erdiagram d) compiler
What are pointers? Why are they used?
Is there any possibility to create customized header file with c programming language?
Why static variable is used in c?
What does %2f mean in c?
What does %p mean c?
What do you mean by scope of a variable in c?
Explain is it better to bitshift a value than to multiply by 2?