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 / abdur rab
The Prototype should be
int* q ( char* );
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
Who invented b language?
What is new line escape sequence?
Describe dynamic data structure in c programming language?
How can my program discover the complete pathname to the executable from which it was invoked?
What is the total generic pointer type?
will u please send me the placement papers to my mail???????????????????
Is malloc memset faster than calloc?
Explain about the functions strcat() and strcmp()?
design and implement a data structure and performs the following operation with the help of file (included 1000 student marks in 5 sub. and %also) 1.how many students are fail in all 5 subjects (if >35) 2. delete all student data those are fail in all 5 subjects. 3. update the grace marks (5 no. if exam paper is 100 marks) 4. arrange the student data in ascending order basis of marks. 5.insert double of deleted students with marks in the list.
Why we not create function inside function.
cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration
write a program that declares an array of 30 elements named "income" in the main functions. then cal and pass the array to a programmer-defined function named "getIncome" within the "getIncome" function, ask the user for annual income of 30 employees. then calculate and print total income on the screen using the following function: "void getIncome ( ai []);
Explain Function Pointer?
what is use of malloc and calloc?
What is the explanation for cyclic nature of data types in c?