0

What is the Output of the below C++ Program?

#include<iostream>
using namespace std;
   int main()
{
    int *ptr = new int(5);
    cout << *ptr;
    return 0;
}
Studently Changed status to publish October 10, 2022