I want to create an array of 10 × 10, which contains '.'
for each element. So I write as :
int A[10][10]={ '.','.','.','.',
(wait a minute I have to write 100 full stops and 100 commas)
'.','.','.'}
Another method is to write '.',
10 times and then copy paste it 10 times, but still this takes time and I don't think this is the smartest method.
Is there a smarter method? I don't want to write so long full stops.