Download presentation
Presentation is loading. Please wait.
1
C Programming Pointers
Part-1 Basic Introduction
2
Basic Understanding Consider the declaration, int i = 3 ;
This declaration tells the C compiler to: Reserve space in memory to hold the integer value. Associate the name i with this memory location. Store the value of i at this location
3
The & and * Operators & (variable) -- means “ Address of ” operator
* (Variable) or * (& Variable) => “ Value of “ Operator
4
Program to print Address of a Variable
5
Pointer Expression
6
Various ways to print value and address Using Pointer
7
Download Lecture PDF from www.learningveda.com
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.