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
Answers were Sorted based on User's Feedback
What is mean by data types in c?
write a program to print %d ?
can you change name of main()?how?
Why c is called procedure oriented language?
Find greatest of two numbers using macro
Given a string write a program to print all alphabetical characters in the order of their occurance first,followed by the sum of the numeric characters then followed by the special characters in the order of their occurance.
1 Answers College School Exams Tests, Wipro,
What is the difference between null pointer and void pointer
10 Answers CTS, Manforce, MAQ Software,
What is a program flowchart and how does it help in writing a program?
When a c file is executed there are many files that are automatically opened what are they files?
Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?
Dont ansi function prototypes render lint obsolete?
void main() { int a=1; while(a++<=1) while(a++<=2); }