Given an integer array a, to find if an integer p exists in the array such that the number of integers greater than p in the array equals p, the condition is:
a) p > a[p]
b) p < a[p]
c) p = a[p]
d) p + a[p] = 0

Respuesta :