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 / rani

int *q(char*)[] can be a proper answer

Is This Answer Correct ?    4 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the types of pointers?

596


What is fflush() function?

639


What is selection sort in c?

601


what is the function of pragma directive in c?

617


shorting algorithmS

1798






Is int a keyword in c?

552


Define circular linked list.

567


In this problem you are to write a program that will cut some number of prime numbers from the list of prime numbers between 1 and N.Your program will read in a number N; determine the list of prime numbers between 1 and N; and print the C*2 prime numbers from the center of the list if there are an even number of prime numbers or (C*2)-1 prime numbers from the center of the list if there are an odd number of prime numbers in the list.

1374


What are shell structures used for?

595


the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters

1793


how to construct a simulator keeping the logical boolean gates in c

1722


Create a simple code fragment that will swap the values of two variables num1 and num2.

802


What is the difference between local variable and global variable in c?

682


What is bubble sort technique in c?

586


Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?

669