How to initialize 4th position only in Array of 5 positions.
- by mahesh
Hi,
I wanted to store 10 in 4th position of array of 5 positions. How to do ?
int main( )
{
int a[5] = {,,,,4} ;
return 0;
}
If i do that i get error. Please help.
Thanks in advance.