#include <iostream> #include <conio.h> using namespace std; main(){ int *p; p=new int; *p=1000; cout << "pdeki tamsayi: " << *p; delete p; getch(); return 0; }
#include <iostream> #include <conio.h> using namespace std; main(){ int *p; p=new int; *p=1000; cout << "pdeki tamsayi: " << *p; delete p; getch(); return 0; }