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 / d
general rule: read left to right strating from inner braces
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
A text file that contains declarations used by a group of functions,programs,or users a) executable file b) header file c) obj file d) .cfile
Why is c faster?
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.
What are variables and it what way is it different from constants?
develop algorithms to add polynomials (i) in one variable
How is a pointer variable declared?
What is property type c?
Tell me with an example the self-referential structure?
What is pointer to pointer in c with example?
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
explain what are pointers?
Can you assign a different address to an array tag?
Is main is a keyword in c?
What is masking?
What is the heap?