Write a program to implement the concept of pointers. Post author:admin Post published:July 5, 2020 Post category:c++ Post comments:0 Comments #include #include main() { int a,b,*p,*q; clrscr(); cout<<"nAddress of a is: "<<&a; cout<<"nAddress of b is: "<<&b; cout<<"nAddress of p is: "<<&p; cout<<"nAddress of q is: "<<&q; getch(); You Might Also Like Write a program to implement the concept of parameterized constructor July 5, 2020 Program to calculate simple interest July 5, 2020 Program to enter value and display back value by using concept of class and object. July 5, 2020 Leave a Reply Cancel replyCommentEnter your name or username to comment Enter your email address to comment Enter your website URL (optional) Save my name, email, and website in this browser for the next time I comment.