#include <iostream> #include <string> #include <stdio.h> #include <stdlib.h> #include <string.h> using namespace std; class gammal{ private: -string name; -int payment; public: -gammal(){ --cout<<"New member created"<<endl; -} -~gammal(){ --cout<<"Member Deleted"<<endl; -} }; void fun(){ -gammal g1; -gammal *g2 = new gammal; -gammal *g3 = (gammal*)malloc(sizeof (gammal)); -int x1; -int *x2 = new int(5); -int *x3 = (int*) malloc(sizeof(int)); } int main() { -fun(); -int x; -cin>>x; }