int nums[100] = {0}; // initiallize all values to 0 int nums[5] = {1,2,3,4,5}; // type name[size] = {values};