CJCoding With Joseph
15per day
← Back to Question List

Select topics to narrow your question pool, then enable Random to jump to a random question matching your filters.

Topics:
C++ Quiz #31

Wrong Delete on Array

mediumDynamic Memory

This code has a subtle bug. What is the issue?

📄 Code

1#include <iostream>
2using namespace std;
3 
4int main() {
5 int* arr = new int[10];
6 for (int i = 0; i < 10; i++) {
7 arr[i] = i * 2;
8 }
9 cout << arr[5] << endl;
10 delete arr; // clean up
11 return 0;
12}