Is it possible to declare an array without specifying the size of the array ?
I tried this
Code:
int i[];
also tried this
Code:
int i[]={};
but none of this seems to work..... Pls help me......