4.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 / s.srinivasulu
correct ans is option C
that is
int (*q)(char*)[]
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
Can you explain what keyboard debouncing is, and where and why we us it? please give some examples
What is pivot in c?
What is header file in c?
Why is %d used in c?
What is table lookup in c?
the statement while(i) puts the entire logic in loop. this loop is called a) indefinite loop b) definite loop c) loop syntax wrong d) none of the above
What is getche() function?
What are the features of c languages?
What are bitwise shift operators in c programming?
When can you use a pointer with a function?
How do you use a 'Local Block'?
we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above
What is the use of sizeof?
Is there any algorithm to search a string in link list in the minimum time?(please do not suggest the usual method of traversing the link list)
Describe dynamic data structure in c programming language?