Answers for "how to adjust and delete memory in c, c++"

C++
0

how to adjust and delete memory in c, c++

#include<iostream>
using namespace std;
int main()
{
  int* ptr 1 = 4;
  delete ptr1;
}
Posted by: Guest on August-29-2021

Code answers related to "how to adjust and delete memory in c, c++"

Browse Popular Code Answers by Language