+ 1
How to print the value of more than one address of integer assigned
int a=2,b=4. int*pa=&a int*pb=&b cout<<*pa__*pb<<endl;
1 Answer
+ 5
??
cout << *pa;
cout << *pb;
cout << *pa << " " << *pb << endl;
int a=2,b=4. int*pa=&a int*pb=&b cout<<*pa__*pb<<endl;