Question: Question 2 2 Consider the following C + + code. int * x = new int; for ( int i = 0 ; int *

Question 22
Consider the following C++ code.
int *x = new int;
for(int i=0; int* j = x; i5;i++)
{
*j}=\textrm{i}
delete j;
j = new int;
}
cout *x endl;
delete x;
Which CWE does this code have?
CWE-125 Out-of-bounds Read
CWE-416 Use after Free
CWE-476 NULL Pointer Dereference
Question 2 2 Consider the following C + + code.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!