you mean, which hasn't been initialized?
if so, then the compiler will not give you an error during compile time, but it probably will during runtime.
EDIT: no.
int *integers is similar but NOT the same as int integers[].
one is a pointer of integers while the other is an array of integers.
btw, if i am not answering your question it's because i'm not understanding it correctly. maybe you should rephrase what you said:
because the question i understood you asked made no sense at all since you're asking if:
int *integers is the same as int *integers[0] which is completely wrong syntax.

