标签:简便 code span div char begin ios 数组 sizeof
<cstring>
里面<algorithm>
里面#include <cstdio> #include <algorithm> using namespace std; int main() { int arr[10]; fill(arr, arr + 10, 2); return 0; }
#include <algorithm> #include <vector> #include <iostream> using namespace std; int main(){ vector<int> v{0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; fill(v.begin(), v.end(), -1); return 0; }
#include <iostream> #include <cstring> using namespace std; int main(){ int a[20]; memset(a, 0, sizeof a); return 0; }
标签:简便 code span div char begin ios 数组 sizeof
原文地址:https://www.cnblogs.com/coder-tcm/p/9201605.html