recategorized by
1,800 views

2 Answers

1 votes
1 votes

int (*f())[ ]; : a function returning a pointer to an array of integers.

int *f()[ ]; : a.function returning an array of pointers to integers

A is answer

1 votes
1 votes

ans is D

An instance method in a subclass with the same signature (name, plus the number and the type of its parameters) and return type as an instance method in the superclass overrides the superclass's method.

The overriding method has the same name, number and type of parameters, and return type as the method that it overrides. An overriding method can also return a subtype of the type returned by the overridden method. This subtype is called a covariant return type.

Answer:

Related questions

0 votes
0 votes
1 answer
2
makhdoom ghaya asked Sep 15, 2016
858 views
Match the following :$\begin{array}{clcl} \text{(a)}& \text{Garbage collection in} & \text{1.} & \text{Java} \\ \text{(b)}& \text{Nameless Object} & \text{2.} & \text{ge...
2 votes
2 votes
1 answer
4
go_editor asked Aug 20, 2016
2,989 views
It is possible to define a class within a class termed as nested class. There are __ types of nested classes2345