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
What is the purpose of void in c?
What are the types of c language?
define string ?
How many parameters should a function have?
What is nested structure?
Once I have used freopen, how can I get the original stdout (or stdin) back?
What is the best way to store flag values in a program?
In a switch statement, what will happen if a break statement is omitted?
how to introdu5ce my self in serco
Can static variables be declared in a header file?
Write a client and server program in C language using UDP, where client program interact with the Server as given below: i) The client begins by sending a request to send a string of 8 characters or series of 7 numbers, the server sends back a characters or numbers as per the request of the client. ii) In case of series of 7 numbers: The client sends a multiplication of numbers, to the server. iii) In case of a string of 8 characters: The client sends a reverse order of string to the server.. iv) Server will send an acknowledgment to the client after receiving the correct answer
What is the significance of c program algorithms?
Can one function call another?
write a proram to reverse the string using switch case?
What is a program flowchart and explain how does it help in writing a program?