Can you see any syntax errors yourself? You can run this in a compiler and read the errors. Could you show us some of the progress you've done on this one?
Actually my C++ was a trial version and just got over & exam is 2mmoro... :(
int a[5][]={ 10,20,30 };
This initialization is wrong right??
When 2 dimensional arrays are initialized in unsized manner, only the 1st index value can be skiped, however the 2nd index must be given. So can it be written this way....