The instantiated version of C++ Class

Example Instantiation

class example {
    int x;
};
 
int main(){
	example* obj = new example();
}