Fill an array with digits 1,2,3,4,5. In c++
#include <array> int main() { auto buffer = std::array<int, 5>(); for (int i = 0; i < 5; ++i) buffer[i] = i + 1; return 0; }
Need a fast expert's response?
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Comments
Leave a comment