1. fill() #include #include // std::fill using namespace std; int a[10]; int b[10][10]; int main(){ fill(&a[0], &a[10], 100); for(int i = 0; i