|
Re: urgent help...required please..PLEASE SEND ME THE REASON
I dont think it is a case of not specifying the size of array because if we dont provide the size but if we mention the members of array then also it will accept without any error.......
ie
int arr[2]={1,2,3};
int arr[]={1,2,3};
//Both the above statement are same and valid...
Gouriproutray try to execute the the abv prog using Turbo C compiler, you will find that all the time you will get the same output......
|