Top Banner
Dr. BABASAHEB AMBEDKAR TECHNOLOGICAL UNIVERSITY Presentation on Pointers , Virtual Functions and Polymorphism. By , Ruturaj Nalawade Sanjay Bidkar Swapnil Sarwade Under the Guidance of , Mrs . Ladda
38

pointers.pptx

Sep 16, 2015

Download

Documents

rafesh
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript

Pointers

Dr. BABASAHEB AMBEDKAR TECHNOLOGICAL UNIVERSITYPresentation on

Pointers , Virtual Functions and Polymorphism. By ,Ruturaj Nalawade Sanjay Bidkar Swapnil Sarwade Under the Guidance of , Mrs . Ladda

PointersIntroductionPointers are the variables which holds the addresses of other variables.

Pointer variables are denoted by * ptr

Pointers are the derived data types.

Introduction Cont.E.g. :={int i , *j;i = 3 ; j = & i ;cout