Setting all values of an array

closed account (4Gb4jE8b)
I have a multidimensional array (10x10) that I want all of the values at first to be 0. Is there any easy way i could do this like

myarr[10][10] = 0

thanks in advance.
size_t myarr[10][10] = {{0}};
closed account (4Gb4jE8b)
many thanks good man!
Topic archived. No new replies allowed.