#include <iostream> #include <conio.h> using namespace std; main() { //int x; int x=5; cout << "x in degeri : " << x << "n"; cout << "x in degeri : " << &x; getch(); return 0; }
#include <iostream> #include <conio.h> using namespace std; main() { //int x; int x=5; cout << "x in degeri : " << x << "n"; cout << "x in degeri : " << &x; getch(); return 0; }