pointers.pptx

38
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

Upload: rafesh

Post on 16-Sep-2015

6 views

Category:

Documents


0 download

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