nord vpnnord vpn
Ad

Untitled

mail@pastecode.io avatar
unknown
c_cpp
a year ago
316 B
1
Indexable
Never
#include <iostream>
using namespace std;

class Rectangle {
private:
	int length;
	int breadth;
};

void fun()
{
	// By taking a pointer p and
	// dynamically creating object
	// of class rectangle
	Rectangle* p = new Rectangle();
}

int main()
{
	// Infinite Loop
	while (1) {
		fun();
	}
}

nord vpnnord vpn
Ad