المساعد الشخصي الرقمي

مشاهدة النسخة كاملة : using cout i get symbols instead address



C++ Programming
10-19-2009, 04:50 AM
Hello
I'm learning pointers and i have few questions.
In this example i create 1 int variable and 2 char variables

#include
using namespace std;

int main ()
{
int b=10;
int *d;
char a='B',c='D';
char *p;


cout