Question: There is a bug in this C++ code can somebody resolve the issue and get it to compile and run: // first.cpp // Example C++11
There is a bug in this C++ code can somebody resolve the issue and get it to compile and run:
// first.cpp // Example C++11 code to compile and execute to test your compiler. // Print out its result after fixing any issues #include#include using std::cout; using std::endl; using std::array; int main() { // Create an array of ten elements; assign values array data; int count = 1; for(int& datum : data) { // Assignment datum == count; // Increment ++count; } // Print values. for(int datum : data) cout << datum << endl; return 0; }
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
