A special value representing the absence of an object or value.
Progress
0/2 solved
Question 1
#include<iostream>
using namespace std;
int main() {
int *ptr = NULL;
ptr = new int;
*ptr = 7;
cout << *ptr;
delete ptr;
return 0;
}